Skip to content

Commit

Permalink
BLD: Make sure we import the module we downloaded, **not** the source…
Browse files Browse the repository at this point in the history
… files
Gerry Manoim committed Jun 25, 2020
1 parent a2b274d commit be927ed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -41,8 +41,9 @@ jobs:
- name: Install from test and test running
run: |
pip install --extra-index-url https://test.pypi.org/simple libpy
python -c 'import libpy;print(libpy.__version__)'
mkdir tmp && cd tmp && python -c 'import libpy;print(libpy.__version__)'
pip uninstall -y libpy
cd ..
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@master
@@ -53,7 +54,8 @@ jobs:
- name: Install and test running
run: |
pip install libpy
python -c 'import libpy;print(libpy.__version__)
mkdir tmp && cd tmp && python -c 'import libpy;print(libpy.__version__)
cd ..
- name: Build the docs
run: |

0 comments on commit be927ed

Please sign in to comment.