diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8f1af81..d545b01 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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