[feat] Relax strict autograd.numpy requirement (#285)

* [feat] Relax strict autograd.numpy requirement

* [Fix] Re-impose --Werror for python 3.14 runs after new autograd release
This commit is contained in:
Fabian Joswig 2026-06-30 08:55:49 +02:00 committed by GitHub
commit 229ea45ac7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 71 additions and 17 deletions

View file

@ -42,10 +42,5 @@ jobs:
uv pip install pytest pytest-cov pytest-benchmark hypothesis --system
uv pip freeze --system
- name: Run tests with -Werror
if: matrix.python-version != '3.14'
- name: Run tests
run: pytest --cov=pyerrors -vv -Werror
- name: Run tests without -Werror for python 3.14
if: matrix.python-version == '3.14'
run: pytest --cov=pyerrors -vv