Skip to content

Commit a995f14

Browse files
committed
bump various tools to use 3.13
1 parent 783827a commit a995f14

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ignore-words-list = 'spawnve'
1717
[tool.isort]
1818
only_modified = true
1919
profile = "black"
20-
py_version = "311"
20+
py_version = "313"
2121
quiet = true
2222
skip_gitignore = true
2323
skip_glob = "tests/*_files/*"
@@ -32,7 +32,7 @@ warn_unused_ignores = false
3232

3333
[tool.pyright]
3434
exclude = ["**/node_modules", "**/__pycache__", "**/.*", "tests/eval_files/*", "tests/autofix_files/*"] # TODO: fix errors in eval/autofix files
35-
pythonVersion = "3.12"
35+
pythonVersion = "3.13"
3636
reportCallInDefaultInitializer = true
3737
reportImplicitStringConcatenation = false # black generates implicit string concats
3838
reportMissingSuperCall = true

0 commit comments

Comments
 (0)