File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 27
27
mkdir -p test-sdist
28
28
cd test-sdist
29
29
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
31
31
echo "Checking import and version number (on release)"
32
32
venv-sdist/bin/python -c "import causalpy; assert causalpy.__version__ == '${{ github.ref_name }}' if '${{ github.ref_type }}' == 'tag' else causalpy.__version__; print(causalpy.__version__)"
33
33
cd ..
36
36
mkdir -p test-bdist
37
37
cd test-bdist
38
38
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
40
40
echo "Checking import and version number (on release)"
41
41
venv-bdist/bin/python -c "import causalpy; assert causalpy.__version__ == '${{ github.ref_name }}' if '${{ github.ref_type }}' == 'tag' else causalpy.__version__; print(causalpy.__version__)"
42
42
cd ..
You can’t perform that action at this time.
0 commit comments