Skip to content

Commit 73247a8

Browse files
committed
feat(deps): add support for Python 3.13 and later
1 parent b1b298a commit 73247a8

File tree

5 files changed

+76
-16
lines changed

5 files changed

+76
-16
lines changed

.circleci/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ executors:
2929
docker:
3030
- image: python:3.12-alpine
3131
resource_class: small
32+
py313:
33+
docker:
34+
- image: python:3.13-alpine
35+
resource_class: small
3236
pypy737: # py38
3337
docker:
3438
- image: pypy:3-7.3.7-slim
@@ -169,7 +173,7 @@ workflows:
169173
name: test-<<matrix.executor>>
170174
matrix:
171175
parameters:
172-
executor: [py38, py39, py310, py311, py312]
176+
executor: [py38, py39, py310, py311, py312, py313]
173177
- toxpypy:
174178
name: test-<<matrix.executor>>
175179
matrix:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
10+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1111

1212
steps:
1313
- uses: actions/[email protected]

0 commit comments

Comments
 (0)