Merge branch 'develop' into feat/typehints

This commit is contained in:
Justus Kuhlmann 2025-11-03 11:54:01 +01:00 committed by GitHub
commit 54a8e022df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 2880 additions and 69 deletions

View file

@ -13,7 +13,7 @@ jobs:
- name: Set up Python environment
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.12"
- uses: actions/checkout@v4
- name: Updated documentation
run: |

View file

@ -17,7 +17,7 @@ jobs:
- name: Set up Python environment
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.12"
- name: flake8 Lint
uses: py-actions/flake8@v2
with:

View file

@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
include:
- os: macos-latest
python-version: "3.12"
@ -42,5 +42,10 @@ jobs:
uv pip install pytest pytest-cov pytest-benchmark hypothesis typing_extensions --system
uv pip freeze --system
- name: Run tests
- name: Run tests with -Werror
if: matrix.python-version != '3.14'
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