Skip to content

Commit b2213b0

Browse files
authored
bump various tools to use 3.13 (#341)
* bump various tools to use 3.13 * isort -> 312
1 parent 783827a commit b2213b0

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ jobs:
5151
fail-fast: false
5252
steps:
5353
- uses: actions/checkout@v4
54-
- name: Set up Python 3.12
54+
- name: Set up Python 3.13
5555
uses: actions/setup-python@v5
5656
with:
57-
python-version: 3.12
57+
python-version: 3.13
5858
- name: Install dependencies
5959
run: |
6060
python -m pip install --upgrade pip setuptools tox

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
default_language_version:
3-
python: python3.12
3+
python: python3.13
44
# pyright requires internet connection to run, which the pre-commit ci app doesn't have.
55
# it instead runs in a github action
66
# check-release-changelog is run as a dedicated job

pyproject.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ ignore-words-list = 'spawnve'
1717
[tool.isort]
1818
only_modified = true
1919
profile = "black"
20-
py_version = "311"
20+
# isort is slow to release official support for new python versions
21+
py_version = "312"
2122
quiet = true
2223
skip_gitignore = true
2324
skip_glob = "tests/*_files/*"
@@ -32,7 +33,7 @@ warn_unused_ignores = false
3233

3334
[tool.pyright]
3435
exclude = ["**/node_modules", "**/__pycache__", "**/.*", "tests/eval_files/*", "tests/autofix_files/*"] # TODO: fix errors in eval/autofix files
35-
pythonVersion = "3.12"
36+
pythonVersion = "3.13"
3637
reportCallInDefaultInitializer = true
3738
reportImplicitStringConcatenation = false # black generates implicit string concats
3839
reportMissingSuperCall = true

0 commit comments

Comments
 (0)