This commit is contained in:
Fabian Joswig 2025-10-11 10:18:30 +05:30 committed by GitHub
commit b307b90a8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,7 +17,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ubuntu-latest] os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
include: include:
- os: macos-latest - os: macos-latest
python-version: "3.12" python-version: "3.12"
@ -32,15 +32,18 @@ jobs:
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: uv - name: uv
uses: astral-sh/setup-uv@v5 uses: astral-sh/setup-uv@v5
- name: Install - name: Install
run: | run: |
sudo apt update
sudo apt install libhdf5-dev
uv pip install wheel --system uv pip install wheel --system
uv pip install . --system uv pip install . --system
uv pip install pytest pytest-cov pytest-benchmark hypothesis --system uv pip install pytest pytest-cov pytest-benchmark hypothesis --system
uv pip freeze --system uv pip freeze --system
- name: Run tests - name: Run tests
run: pytest --cov=pyerrors -vv -Werror run: pytest --cov=pyerrors -vv