Skip to content

Commit b47ca11

Browse files
committed
Enable Python 3.14 in CI
Signed-off-by: Sergey Vasilyev <[email protected]>
1 parent 7ce51ea commit b47ca11

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v5
1616
- uses: actions/setup-python@v6
1717
with:
18-
python-version: "3.13"
18+
python-version: "3.14"
1919
- run: pip install --group dev --group lint -e .
2020
- run: pre-commit run --all-files
2121
- run: mypy looptime --strict
@@ -24,10 +24,10 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
python-version: [ "3.10", "3.11", "3.12" ]
27+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
2828
include:
29-
- python-version: "3.13"
30-
- python-version: "3.13"
29+
- python-version: "3.14"
30+
- python-version: "3.14"
3131
install-extras: "pytest-asyncio<1.0.0"
3232
name: Python ${{ matrix.python-version }}${{ matrix.install-extras && ', ' || '' }}${{ matrix.install-extras }}
3333
runs-on: ubuntu-24.04

.github/workflows/thorough.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v5
1818
- uses: actions/setup-python@v6
1919
with:
20-
python-version: "3.13"
20+
python-version: "3.14"
2121
- run: pip install --group dev --group lint -e .
2222
- run: pre-commit run --all-files
2323
- run: mypy looptime --strict
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
29+
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
3030
name: Python ${{ matrix.python-version }}
3131
runs-on: ubuntu-24.04
3232
timeout-minutes: 5

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
2424
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3.14",
2526
"Programming Language :: Python :: 3 :: Only",
2627
"Programming Language :: Python :: Implementation :: CPython",
2728
"Programming Language :: Python :: Implementation :: PyPy",

0 commit comments

Comments
 (0)