Skip to content

Commit b90af95

Browse files
Merge pull request #147 from scikit-hep/eduardo-py3.13and14
Add explicit support for Python 3.13 and 3.14
2 parents ec0412e + 3865861 commit b90af95

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,12 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python-version: ["3.8", "3.12"]
32+
python-version: ["3.8", "3.12", "3.13", "3.14"]
3333
runs-on: [ubuntu-latest, macos-13, windows-latest]
3434
include:
3535
- python-version: "3.12"
3636
runs-on: macos-14
3737

38-
39-
40-
41-
4238
steps:
4339
- uses: actions/checkout@v5
4440

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ repos:
3636
rev: v3.1.0
3737
hooks:
3838
- id: setup-cfg-fmt
39-
args: [--include-version-classifiers, --min-py-version=3.8, --max-py-version=3.12]
39+
args: [--include-version-classifiers, --min-py-version=3.8, --max-py-version=3.14]
4040

4141
- repo: https://github.com/pycqa/flake8
4242
rev: 7.3.0

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ classifiers =
2525
Programming Language :: Python :: 3.10
2626
Programming Language :: Python :: 3.11
2727
Programming Language :: Python :: 3.12
28+
Programming Language :: Python :: 3.13
29+
Programming Language :: Python :: 3.14
2830
Topic :: Scientific/Engineering
2931

3032
[options]

0 commit comments

Comments
 (0)