Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pip-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:
run: |
python -m venv venv-sdist
venv-sdist/bin/python -m pip install dist/vplanet*.tar.gz
venv-sdist/bin/python -c "import vplanet; print(vplanet.__version__)"
cd /tmp && "$GITHUB_WORKSPACE/venv-sdist/bin/python" -c "import vplanet; print(vplanet.__version__)"

- name: Test the wheel
run: |
python -m venv venv-wheel
venv-wheel/bin/python -m pip install dist/vplanet*.whl
venv-wheel/bin/python -c "import vplanet; print(vplanet.__version__)"
cd /tmp && "$GITHUB_WORKSPACE/venv-wheel/bin/python" -c "import vplanet; print(vplanet.__version__)"

- uses: actions/upload-artifact@v4
with:
Expand Down
Loading