Merge pull request #891 from pierotofy/numfix

Fix installation on Python 3.13, 3.14
This commit is contained in:
Piero Toffanin 2025-12-04 12:58:52 -05:00 committed by GitHub
commit 0f10a04f17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v4

View File

@ -55,7 +55,8 @@ dependencies = [
"Werkzeug ==2.3.8",
"requests ==2.31.0",
"redis ==4.4.4",
"numpy <2",
"numpy <2;python_version<='3.12'",
"numpy ==2.3.5;python_version>='3.13'",
"prometheus-client ==0.15.0",
"polib ==1.1.1",
"packaging ==23.1",