Skip to content

Commit 1b1d7b3

Browse files
committed
fix circular deps
1 parent 9206fa0 commit 1b1d7b3

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ jobs:
2828
env:
2929
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
3030
run: |
31-
python -m pip install git+https://$ACCESS_TOKEN@github.com/VirtualPlanetaryLaboratory/vplanet-private.git@b1594c1c8b714803248762ab7a4ea5a034c25c39#egg=vplanet
32-
python -m pip uninstall -y vplot
31+
python -m pip install --no-deps git+https://$ACCESS_TOKEN@github.com/VirtualPlanetaryLaboratory/vplanet-private.git@b1594c1c8b714803248762ab7a4ea5a034c25c39#egg=vplanet
3332
3433
- name: Run vplanet
3534
shell: bash -l {0}

.github/workflows/tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ jobs:
2525
env:
2626
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
2727
run: |
28-
python -m pip install git+https://$ACCESS_TOKEN@github.com/VirtualPlanetaryLaboratory/vplanet-private.git@b1594c1c8b714803248762ab7a4ea5a034c25c39#egg=vplanet
29-
python -m pip uninstall -y vplot
28+
python -m pip install --no-deps git+https://$ACCESS_TOKEN@github.com/VirtualPlanetaryLaboratory/vplanet-private.git@b1594c1c8b714803248762ab7a4ea5a034c25c39#egg=vplanet
3029
3130
- name: Install vplot
3231
shell: bash -l {0}

.github/workflows/wheels.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ jobs:
3131
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
3232
run: |
3333
python -m venv venv-sdist
34-
venv-sdist/bin/python -m pip install git+https://$ACCESS_TOKEN@github.com/VirtualPlanetaryLaboratory/vplanet-private.git@b1594c1c8b714803248762ab7a4ea5a034c25c39#egg=vplanet
35-
venv-sdist/bin/python -m pip uninstall -y vplot
34+
venv-sdist/bin/python -m pip install --no-deps git+https://$ACCESS_TOKEN@github.com/VirtualPlanetaryLaboratory/vplanet-private.git@b1594c1c8b714803248762ab7a4ea5a034c25c39#egg=vplanet
3635
venv-sdist/bin/python -m pip install dist/vplot*.tar.gz
3736
venv-sdist/bin/python -c "import vplot; print(vplot.__version__)"
3837
@@ -42,8 +41,7 @@ jobs:
4241
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
4342
run: |
4443
python -m venv venv-wheel
45-
venv-wheel/bin/python -m pip install git+https://$ACCESS_TOKEN@github.com/VirtualPlanetaryLaboratory/vplanet-private.git@b1594c1c8b714803248762ab7a4ea5a034c25c39#egg=vplanet
46-
venv-wheel/bin/python -m pip uninstall -y vplot
44+
venv-wheel/bin/python -m pip install --no-deps git+https://$ACCESS_TOKEN@github.com/VirtualPlanetaryLaboratory/vplanet-private.git@b1594c1c8b714803248762ab7a4ea5a034c25c39#egg=vplanet
4745
venv-wheel/bin/python -m pip install dist/vplot*.whl
4846
venv-wheel/bin/python -c "import vplot; print(vplot.__version__)"
4947

0 commit comments

Comments
 (0)