From 89c42e47bbc4744998f385e6a2f3d1dcaca3d8cf Mon Sep 17 00:00:00 2001 From: Raphael Boidol Date: Thu, 3 Oct 2024 20:06:46 +0200 Subject: [PATCH] tests: test for compatibility with 3.13 --- .github/workflows/continous-integration.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continous-integration.yml b/.github/workflows/continous-integration.yml index 72312cd..841a87f 100644 --- a/.github/workflows/continous-integration.yml +++ b/.github/workflows/continous-integration.yml @@ -19,7 +19,7 @@ jobs: build: strategy: matrix: - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13"] runs-on: ubuntu-latest steps: diff --git a/pyproject.toml b/pyproject.toml index 001a478..ba884b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: CPython", ] -requires-python = ">=3.10" +requires-python = ">=3.10,<4" dependencies = [ "ruamel.yaml==0.18.6", ]