From f38ac8b13a4de4c1353ec65d202ab5405efdfc86 Mon Sep 17 00:00:00 2001 From: Zvika Gart Date: Tue, 7 Jan 2025 13:55:36 +0000 Subject: [PATCH 1/2] Add support for Python 3.13 --- .circleci/config.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 489bf17..b935c63 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ version: 2.1 executors: default: docker: - - image: cimg/python:3.11 + - image: cimg/python:3.13 resource_class: small diff --git a/pyproject.toml b/pyproject.toml index bfd80c1..83816ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,4 +50,4 @@ lint = "flake8 src tests examples" test = "python -m unittest -v" [[tool.hatch.envs.test.matrix]] -python = ["3.9", "3.10", "3.11", "3.12"] \ No newline at end of file +python = ["3.9", "3.10", "3.11", "3.12", "3.13"] \ No newline at end of file From 495a65bf199aab9b76a0010c005d23aea566314b Mon Sep 17 00:00:00 2001 From: Zvika Gart Date: Tue, 7 Jan 2025 13:57:29 +0000 Subject: [PATCH 2/2] fix --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 83816ec..9c905c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,4 +50,4 @@ lint = "flake8 src tests examples" test = "python -m unittest -v" [[tool.hatch.envs.test.matrix]] -python = ["3.9", "3.10", "3.11", "3.12", "3.13"] \ No newline at end of file +python = ["3.9", "3.10", "3.11", "3.12", "3.13"]