From 61319961dceba2b220ff59e1b750d2cc66f98ec2 Mon Sep 17 00:00:00 2001 From: Alexander Malev Date: Thu, 3 Aug 2023 01:07:41 +0300 Subject: [PATCH] Support py3.11 (#35) --- .github/workflows/tests.yml | 1 + .scaraplate.conf | 2 +- pyproject.toml | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e1a7da8..e65f3b9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,6 +20,7 @@ jobs: - '3.7' - '3.9' - '3.10' + - '3.11' - pypy-3.8 - pypy-3.9 include: diff --git a/.scaraplate.conf b/.scaraplate.conf index e99a950..aee985e 100644 --- a/.scaraplate.conf +++ b/.scaraplate.conf @@ -10,4 +10,4 @@ project_name = consul project_package = aioworkers_consul project_slug = aioworkers-consul python_ci = 3.8 -python_versions = 3.7,3.8,3.9,3.10 +python_versions = 3.7,3.8,3.9,3.10,3.11 diff --git a/pyproject.toml b/pyproject.toml index 4f57771..ba4b396 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] @@ -81,6 +82,7 @@ python = [ "3.8", "3.9", "3.10", + "3.11", ] [tool.pytest.ini_options] @@ -115,6 +117,7 @@ target-version = [ "py38", "py39", "py310", + "py311", ] [tool.isort]