From b3a7c11df92338d8369ce1206ddce90f1a5c542f Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Fri, 10 May 2024 22:07:59 -0500 Subject: [PATCH] ci: 3.11 only in railway --- .tool-versions | 1 + pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.tool-versions b/.tool-versions index f732415..647c783 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1,2 @@ +python 3.11 python 3.12 diff --git a/pyproject.toml b/pyproject.toml index 6cc5288..2b4ac7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ dependencies = [ "ruff>=0.1.7", "githubkit[auth-app]>=0.11.2", ] -requires-python = ">=3.12,<4.0" +requires-python = ">=3.11,<4.0" readme = "README.md" license = { text = "MIT" } classifiers = [ @@ -28,6 +28,7 @@ classifiers = [ 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3 :: Only', + 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Intended Audience :: Developers', 'Intended Audience :: Information Technology', @@ -207,7 +208,7 @@ strict-imports = false [tool.ruff] line-length = 120 src = ["src", "tests"] -target-version = "py311" +target-version = "py312" [tool.ruff.lint] select = ["ALL"]