From 4c204547afc8c763052c15f7ff448ce4ab3f73c3 Mon Sep 17 00:00:00 2001 From: cosine0 Date: Mon, 17 Jul 2023 15:29:28 +0900 Subject: [PATCH] Extend support to Python 3.11 --- .github/workflows/ci.yml | 2 +- Pipfile | 5 ----- setup.cfg | 1 + tox.ini | 3 ++- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e42fa5..dc16f48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [3.7, 3.8, 3.9, "3.10"] + python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] os: [ubuntu-latest, macOS-latest, windows-latest] steps: diff --git a/Pipfile b/Pipfile index 4f8fc6e..4c7178b 100644 --- a/Pipfile +++ b/Pipfile @@ -5,8 +5,3 @@ name = "pypi" [packages] pythonfinder = {editable = true, extras = ["dev", "tests"], path = "."} - -[dev-packages] - -[requires] -python_version = "3.10" diff --git a/setup.cfg b/setup.cfg index 9da917e..4e51a98 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,6 +24,7 @@ classifier = Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Topic :: Software Development :: Build Tools Topic :: Software Development :: Libraries :: Python Modules Topic :: Utilities diff --git a/tox.ini b/tox.ini index 10f7124..e1e343f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - docs, packaging, py37, py38, py39, py310, coverage-report + docs, packaging, py37, py38, py39, py310, py311, coverage-report [gh-actions] python = @@ -8,6 +8,7 @@ python = 3.8: py38 3.9: py39 3.10: py310 + 3.11: py311 [testenv] passenv = CI GIT_SSL_CAINFO