Skip to content

Commit 06c989d

Browse files
Fix CentOS Stream 9 wheel test: allow PyPI access for numpy dependency
The --no-index flag prevented pip from fetching the numpy dependency from PyPI. Using --find-links alone lets pip find netgraph-core from the local wheelhouse while resolving numpy from PyPI. Co-authored-by: Andrey G <networmix@gmail.com>
1 parent 698bbc4 commit 06c989d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- name: Install and test wheel
8080
run: |
8181
python3.11 -m pip install --upgrade pip
82-
python3.11 -m pip install netgraph-core --no-index --find-links wheelhouse/
82+
python3.11 -m pip install netgraph-core --find-links wheelhouse/
8383
python3.11 -c "import netgraph_core; print('CentOS Stream 9:', netgraph_core.__version__)"
8484
8585
publish_pypi:

0 commit comments

Comments
 (0)