Skip to content

Commit 914cf4c

Browse files
committed
lowercase filenames from flit
1 parent 4fdef7b commit 914cf4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
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 ..
@@ -36,7 +36,7 @@ jobs:
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 ..

0 commit comments

Comments
 (0)