Skip to content

Commit

Permalink
Test in Python 3.13.0b2 (#161)
Browse files Browse the repository at this point in the history
Since Python 3.13.0 is now in beta releases, we should be testing in it! This does so.
  • Loading branch information
Mr0grog committed Jun 7, 2024
1 parent 3937ca9 commit 7b2b4ea
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,17 @@ commands:
jobs:
test:
parameters:
base-image:
type: string
default: cimg/python
python-version:
type: string
urllib3-version:
type: string

working_directory: ~/wayback
docker:
- image: cimg/python:<< parameters.python-version >>
- image: << parameters.base-image >>:<< parameters.python-version >>
steps:
- checkout
- setup_pip:
Expand Down Expand Up @@ -129,5 +132,11 @@ workflows:
parameters:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
urllib3-version: ["1.20", "2.0"]
- test:
matrix:
parameters:
base-image: ["mr0grog/circle-python-pre"]
python-version: ["3.13.0b2"]
urllib3-version: ["1.20", "2.0"]
- lint
- docs

0 comments on commit 7b2b4ea

Please sign in to comment.