Skip to content

Commit 8f5315d

Browse files
author
Scott Sanderson
committed
BUG: Don't use nonexistent __version__ field.
1 parent 1dbc48d commit 8f5315d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
python -m pip install --upgrade pip
3333
pip install --extra-index-url https://test.pypi.org/simple python-interface
34-
python -c 'import interface; print(interface.__version__)'
34+
python -c 'import interface'
3535
pip uninstall -y interface
3636
3737
- name: Publish distribution to PyPI
@@ -42,5 +42,7 @@ jobs:
4242

4343
- name: Install and test running
4444
run: |
45+
python -m pip install --upgrade pip
4546
pip install python-interface
46-
python -c 'import interface; print(interface.__version__)'
47+
python -c 'import interface'
48+
pip uninstall -y interface

0 commit comments

Comments
 (0)