Skip to content

Commit

Permalink
Separate numpy install
Browse files Browse the repository at this point in the history
  • Loading branch information
marklysze committed Nov 20, 2024
1 parent 6be11a4 commit 73a0813
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/contrib-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,11 +250,13 @@ jobs:
run: |
python -m pip install --upgrade pip wheel
pip install pytest-cov>=5
pip install "numpy>=2.1.0" # Add this line
python -c "import numpy; print(f'NumPy version: {numpy.__version__}')" # Verification
- name: Install packages and dependencies for WebSurfer
run: |
pip install -e .[websurfer]
- name: Upgrade NumPy for Python 3.13 support
run: |
pip install --upgrade "numpy>=2.1.0"
python -c "import numpy; print(f'NumPy version: {numpy.__version__}')"
- name: Set AUTOGEN_USE_DOCKER based on OS
shell: bash
run: |
Expand Down

0 comments on commit 73a0813

Please sign in to comment.