Skip to content

Commit c656f8e

Browse files
committed
Bump base python to 3.13
As I get odd mypy errors with 3.12 and the target for this library is 3.14.
1 parent 1ab30e8 commit c656f8e

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
@@ -19,10 +19,10 @@ jobs:
1919
include:
2020
- {name: '3.13', python: '3.13', tox: py313}
2121
- {name: '3.12', python: '3.12', tox: py312}
22-
- {name: 'format', python: '3.12', tox: format}
23-
- {name: 'mypy', python: '3.12', tox: mypy}
24-
- {name: 'pep8', python: '3.12', tox: pep8}
25-
- {name: 'package', python: '3.12', tox: package}
22+
- {name: 'format', python: '3.13', tox: format}
23+
- {name: 'mypy', python: '3.13', tox: mypy}
24+
- {name: 'pep8', python: '3.13', tox: pep8}
25+
- {name: 'package', python: '3.13', tox: package}
2626

2727
steps:
2828
- uses: actions/checkout@v3

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.12
14+
basepython = python3.13
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.12
23+
basepython = python3.13
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.12
32+
basepython = python3.13
3333
deps =
3434
mypy
3535
pytest
3636
commands =
3737
mypy src/sql_tstring/ tests/
3838

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

0 commit comments

Comments
 (0)