We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fba634 commit b4dee87Copy full SHA for b4dee87
.readthedocs.yml
@@ -9,7 +9,9 @@ build:
9
python: "3.8"
10
jobs:
11
post_install:
12
- - pip install --upgrade pdm
+ # Install PDM in its own isolated environment, so docs deps don't trample its deps
13
+ - curl -sSL https://raw.githubusercontent.com/pdm-project/pdm/main/install-pdm.py | python3 -
14
+ # TODO how to get `pdm` on the $PATH?
15
# https://github.com/pdm-project/pdm/discussions/1365#discussioncomment-3581356
16
# NOTE: pandoc fails in isolation mode
- - VIRTUAL_ENV=$(dirname $(dirname $(which python))) pdm install --no-isolation -G viz -dG docs
17
+ - VIRTUAL_ENV=$(dirname $(dirname $(which python))) $HOME/.local/bin/pdm sync --no-isolation -G viz -dG docs
0 commit comments