Skip to content

Commit e7b083e

Browse files
authored
Added Python 3.13 Support (#420)
1 parent 18e18a3 commit e7b083e

File tree

6 files changed

+547
-403
lines changed

6 files changed

+547
-403
lines changed

.github/workflows/linter.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ jobs:
1717
run: |
1818
sudo apt update
1919
20-
- name: Set up Python 3.12
21-
uses: actions/setup-python@v5
20+
- name: Set up Python 3.13
21+
uses: useblacksmith/setup-python@v6
2222
with:
23-
python-version: '3.12'
23+
python-version: '3.13'
24+
cache: 'pip'
25+
cache-dependency-path: '**/setup.py'
2426

2527
- name: Install Poetry
2628
uses: snok/[email protected]

.github/workflows/parallel-support.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
fail-fast: false
3838
matrix:
39-
python-version: ["3.12"]
39+
python-version: ["3.13"]
4040
os: ["blacksmith-4vcpu-ubuntu-2204"]
4141

4242
steps:
@@ -78,7 +78,7 @@ jobs:
7878
strategy:
7979
fail-fast: false
8080
matrix:
81-
python-version: ["3.12"]
81+
python-version: ["3.13"]
8282
os: ["blacksmith-4vcpu-ubuntu-2204"]
8383

8484
steps:

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
fail-fast: false
3838
matrix:
39-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
39+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
4040
os: ["blacksmith-4vcpu-ubuntu-2204"]
4141

4242
steps:
@@ -88,7 +88,7 @@ jobs:
8888
strategy:
8989
fail-fast: false
9090
matrix:
91-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
91+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
9292
os: ["blacksmith-4vcpu-ubuntu-2204"]
9393

9494
steps:
@@ -133,7 +133,7 @@ jobs:
133133
strategy:
134134
fail-fast: false
135135
matrix:
136-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
136+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
137137
os: ["blacksmith-4vcpu-ubuntu-2204"]
138138

139139
steps:

0 commit comments

Comments
 (0)