Skip to content

Commit

Permalink
limit to py3.10 rectify numpy req
Browse files Browse the repository at this point in the history
  • Loading branch information
LoannPeurey committed Feb 27, 2024
1 parent de90b7f commit 6a7373f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.7.16', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7.16', '3.8', '3.9', '3.10']
name: Tests-linux-macos
runs-on: ${{ matrix.os }}
# defaults:
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
os: [windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7', '3.8', '3.9', '3.10']
name: Tests-windows
runs-on: ${{ matrix.os }}
# defaults:
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
cache: pip
addons:
apt:
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ librosa==0.10.1
lxml==5.1.0
matplotlib==3.5.3
nltk==3.8.1
numpy==1.20.3; python_version <= '3.10'
numpy==1.26.4; python_version >= '3.11'
numpy==1.20.3; python_version <= '3.9'
numpy==1.26.4; python_version >= '3.10'
pandas==1.3.5; python_version <= '3.10'
pandas==1.5.3; python_version >= '3.11'
panoptes-client==1.6.1
Expand Down

0 comments on commit 6a7373f

Please sign in to comment.