Skip to content

Fix python 3.14 support (typing.ByteString removed in 3.14) #65

Fix python 3.14 support (typing.ByteString removed in 3.14)

Fix python 3.14 support (typing.ByteString removed in 3.14) #65

Workflow file for this run

name: Tests matrix
on: [pull_request, push]
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: [ '3.9', '3.10', '3.11', '3.12' , '3.13' , '3.14' ]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip pycdfpp
pip install -e .
pip install -r requirements_dev.txt
pip install pytest sphinx pandoc
pip install -r docs/requirements.txt
- name: Test with pytest
run: |
pytest
make doctest