File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2727 mkdir -p test-sdist
2828 cd test-sdist
2929 python -m venv venv-sdist
30- venv-sdist/bin/python -m pip install ../dist/CausalPy *.tar.gz
30+ venv-sdist/bin/python -m pip install ../dist/causalpy *.tar.gz
3131 echo "Checking import and version number (on release)"
3232 venv-sdist/bin/python -c "import causalpy; assert causalpy.__version__ == '${{ github.ref_name }}' if '${{ github.ref_type }}' == 'tag' else causalpy.__version__; print(causalpy.__version__)"
3333 cd ..
3636 mkdir -p test-bdist
3737 cd test-bdist
3838 python -m venv venv-bdist
39- venv-bdist/bin/python -m pip install ../dist/CausalPy *.whl
39+ venv-bdist/bin/python -m pip install ../dist/causalpy *.whl
4040 echo "Checking import and version number (on release)"
4141 venv-bdist/bin/python -c "import causalpy; assert causalpy.__version__ == '${{ github.ref_name }}' if '${{ github.ref_type }}' == 'tag' else causalpy.__version__; print(causalpy.__version__)"
4242 cd ..
You can’t perform that action at this time.
0 commit comments