Skip to content

Commit

Permalink
BUG: Don't use nonexistent __version__ field.
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Sanderson committed May 7, 2020
1 parent 1dbc48d commit 8f5315d
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
Expand Up @@ -31,7 +31,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install --extra-index-url https://test.pypi.org/simple python-interface
python -c 'import interface; print(interface.__version__)'
python -c 'import interface'
pip uninstall -y interface
- name: Publish distribution to PyPI
Expand All @@ -42,5 +42,7 @@ jobs:

- name: Install and test running
run: |
python -m pip install --upgrade pip
pip install python-interface
python -c 'import interface; print(interface.__version__)'
python -c 'import interface'
pip uninstall -y interface

0 comments on commit 8f5315d

Please sign in to comment.