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 bceea95 commit c9ea7f2Copy full SHA for c9ea7f2
1 file changed
.github/workflows/pip-install.yml
@@ -33,14 +33,14 @@ jobs:
33
- name: Test the sdist
34
run: |
35
python -m venv venv-sdist
36
- venv-sdist/bin/python -m pip install dist/vspace*.tar.gz
37
- venv-sdist/bin/python -c "import vspace; print(vspace.__version__)"
+ venv-sdist/bin/python -m pip install dist/vplot*.tar.gz
+ venv-sdist/bin/python -c "import vplot; print(vplot.__version__)"
38
39
- name: Test the wheel
40
41
python -m venv venv-wheel
42
- venv-wheel/bin/python -m pip install dist/vspace*.whl
43
- venv-wheel/bin/python -c "import vspace; print(vspace.__version__)"
+ venv-wheel/bin/python -m pip install dist/vplot*.whl
+ venv-wheel/bin/python -c "import vplot; print(vplot.__version__)"
44
45
- uses: actions/upload-artifact@v3
46
with:
0 commit comments