Skip to content

Commit fb7807e

Browse files
feat: add support for python 3.14 (#79)
1 parent a6bcba2 commit fb7807e

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2121
with:
22-
python-version: 3.13
22+
python-version: 3.14
2323
- name: Install dependencies
2424
run: |
2525
pip install -U pip

.github/workflows/flake8.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,16 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
timeout-minutes: 2
13-
strategy:
14-
matrix:
15-
python-version: ["3.13"]
1613
permissions:
1714
contents: read
1815
steps:
1916
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2017
with:
2118
persist-credentials: false
22-
- name: Set up Python ${{ matrix.python-version }}
19+
- name: Set up Python
2320
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2421
with:
25-
python-version: ${{ matrix.python-version }}
22+
python-version: 3.14
2623
- name: Run flake8 verification
2724
run: |
2825
./scripts/lint.sh

.github/workflows/mypy.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,16 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
timeout-minutes: 2
13-
strategy:
14-
matrix:
15-
python-version: ["3.13"]
1613
permissions:
1714
contents: read
1815
steps:
1916
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2017
with:
2118
persist-credentials: false
22-
- name: Set up Python ${{ matrix.python-version }}
19+
- name: Set up Python
2320
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2421
with:
25-
python-version: ${{ matrix.python-version }}
22+
python-version: 3.14
2623
- name: Run mypy verification
2724
run: |
2825
./scripts/run_mypy.sh

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- "3.11"
1919
- "3.12"
2020
- "3.13"
21+
- "3.14"
2122
- "pypy3.10"
2223
permissions:
2324
contents: read

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.11",
2424
"Programming Language :: Python :: 3.12",
2525
"Programming Language :: Python :: 3.13",
26+
"Programming Language :: Python :: 3.14",
2627
"Programming Language :: Python :: Implementation :: CPython",
2728
"Programming Language :: Python :: Implementation :: PyPy",
2829
]

0 commit comments

Comments
 (0)