From 7b2b4ea145832cbcc1b1b57f43ddb5f4fd2f0936 Mon Sep 17 00:00:00 2001 From: Rob Brackett Date: Fri, 7 Jun 2024 13:55:26 -0400 Subject: [PATCH] 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. --- .circleci/config.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b48ede3..e6ca45d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -61,6 +61,9 @@ commands: jobs: test: parameters: + base-image: + type: string + default: cimg/python python-version: type: string urllib3-version: @@ -68,7 +71,7 @@ jobs: working_directory: ~/wayback docker: - - image: cimg/python:<< parameters.python-version >> + - image: << parameters.base-image >>:<< parameters.python-version >> steps: - checkout - setup_pip: @@ -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