Skip to content

Commit 55c2655

Browse files
committed
chore: update CI/CD and dev tool versions for Python 3.14
1 parent 25ab9f1 commit 55c2655

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.10", "3.11", "3.12", "3.13"]
15+
python-version: ["3.14"]
1616
steps:
1717
- name: Checkout code
1818
uses: actions/checkout@v4
@@ -29,11 +29,11 @@ jobs:
2929
run: make test
3030

3131
- name: Run coverage
32-
if: matrix.python-version == '3.12'
32+
if: matrix.python-version == '3.14'
3333
run: make coverage
3434

3535
- name: Upload coverage to Codecov
36-
if: matrix.python-version == '3.12'
36+
if: matrix.python-version == '3.14'
3737
uses: codecov/codecov-action@v4
3838
with:
3939
file: ./coverage.xml
@@ -49,7 +49,7 @@ jobs:
4949
- name: Set up Python
5050
uses: actions/setup-python@v5
5151
with:
52-
python-version: "3.12"
52+
python-version: "3.14"
5353

5454
- name: Install dependencies
5555
run: make install-dev

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v5
2222
with:
23-
python-version: "3.12"
23+
python-version: "3.14"
2424

2525
- name: Install dependencies
2626
run: make install-dev
@@ -45,7 +45,7 @@ jobs:
4545
- name: Set up Python
4646
uses: actions/setup-python@v5
4747
with:
48-
python-version: "3.12"
48+
python-version: "3.14"
4949

5050
- name: Install dependencies
5151
run: make install-dev

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ dev = [
2929
"pytest>=8.0.0",
3030
"pytest-asyncio>=0.24.0",
3131
"pytest-cov>=4.0.0",
32-
"black>=24.0.0",
33-
"isort>=5.13.0",
34-
"mypy>=1.8.0",
32+
"black>=26.0.0",
33+
"isort>=7.0.0",
34+
"mypy>=1.14.0",
3535
]
3636

3737
[project.urls]

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ pytest-asyncio>=0.24.0
1313
pytest-cov>=4.0.0
1414

1515
# Code quality
16-
black>=24.0.0
17-
isort>=5.13.0
18-
mypy>=1.8.0
16+
black>=26.0.0
17+
isort>=7.0.0
18+
mypy>=1.14.0

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
"pytest>=8.0.0",
3232
"pytest-asyncio>=0.24.0",
3333
"pytest-cov>=4.0.0",
34-
"black>=24.0.0",
35-
"isort>=5.13.0",
36-
"mypy>=1.8.0",
34+
"black>=26.0.0",
35+
"isort>=7.0.0",
36+
"mypy>=1.14.0",
3737
],
3838
},
3939
)

0 commit comments

Comments
 (0)