Skip to content

Commit 7b2b4ea

Browse files
authored
Test in Python 3.13.0b2 (#161)
Since Python 3.13.0 is now in beta releases, we should be testing in it! This does so.
1 parent 3937ca9 commit 7b2b4ea

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.circleci/config.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,17 @@ commands:
6161
jobs:
6262
test:
6363
parameters:
64+
base-image:
65+
type: string
66+
default: cimg/python
6467
python-version:
6568
type: string
6669
urllib3-version:
6770
type: string
6871

6972
working_directory: ~/wayback
7073
docker:
71-
- image: cimg/python:<< parameters.python-version >>
74+
- image: << parameters.base-image >>:<< parameters.python-version >>
7275
steps:
7376
- checkout
7477
- setup_pip:
@@ -129,5 +132,11 @@ workflows:
129132
parameters:
130133
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
131134
urllib3-version: ["1.20", "2.0"]
135+
- test:
136+
matrix:
137+
parameters:
138+
base-image: ["mr0grog/circle-python-pre"]
139+
python-version: ["3.13.0b2"]
140+
urllib3-version: ["1.20", "2.0"]
132141
- lint
133142
- docs

0 commit comments

Comments
 (0)