diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ee9c9ed..2c83c72 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 5ebcc4b..9db55d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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",