Skip to content

Commit 35afb6e

Browse files
committed
Bump the CI to use Python 3.14
This will hopefully solve a mypy issue in CI that I can't reproduce.
1 parent 561e047 commit 35afb6e

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- {name: '3.14', python: '3.14-rc', tox: py314}
2121
- {name: '3.13', python: '3.13', tox: py313}
2222
- {name: '3.12', python: '3.12', tox: py312}
23-
- {name: 'format', python: '3.13', tox: format}
24-
- {name: 'mypy', python: '3.13', tox: mypy}
25-
- {name: 'pep8', python: '3.13', tox: pep8}
26-
- {name: 'package', python: '3.13', tox: package}
23+
- {name: 'format', python: '3.14-rc', tox: format}
24+
- {name: 'mypy', python: '3.14-rc', tox: mypy}
25+
- {name: 'pep8', python: '3.14-rc', tox: pep8}
26+
- {name: 'package', python: '3.14-rc', tox: package}
2727

2828
steps:
2929
- uses: actions/checkout@v4

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ commands = pytest --cov=sql_tstring {posargs}
1111
passenv = DATABASE_URL
1212

1313
[testenv:format]
14-
basepython = python3.13
14+
basepython = python3.14
1515
deps =
1616
black
1717
isort
@@ -20,7 +20,7 @@ commands =
2020
isort --check --diff src/sql_tstring/ tests/
2121

2222
[testenv:pep8]
23-
basepython = python3.13
23+
basepython = python3.14
2424
deps =
2525
flake8
2626
flake8-bugbear
@@ -29,15 +29,15 @@ deps =
2929
commands = flake8 src/sql_tstring/ tests/
3030

3131
[testenv:mypy]
32-
basepython = python3.13
32+
basepython = python3.14
3333
deps =
3434
mypy
3535
pytest
3636
commands =
3737
mypy src/sql_tstring/ tests/
3838

3939
[testenv:package]
40-
basepython = python3.13
40+
basepython = python3.14
4141
deps =
4242
pdm
4343
twine

0 commit comments

Comments
 (0)