[ci] Add python 3.13 to pytest workflow. (#242)

* [ci] Add python 3.13 to pytest workflow.

* [ci] Remove py and pyarrow from pytest workflow
This commit is contained in:
Fabian Joswig 2024-10-14 23:27:24 +02:00 committed by GitHub
parent 4b1bb0872a
commit b43a2cbd34
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

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"] python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
include: include:
- os: macos-latest - os: macos-latest
python-version: "3.10" python-version: "3.10"
@ -40,8 +40,6 @@ jobs:
pip install pytest-cov pip install pytest-cov
pip install pytest-benchmark pip install pytest-benchmark
pip install hypothesis pip install hypothesis
pip install py
pip install pyarrow
pip freeze pip freeze
- name: Run tests - name: Run tests

View file

@ -36,6 +36,7 @@ setup(name='pyerrors',
'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering :: Physics' 'Topic :: Scientific/Engineering :: Physics'
], ],
) )