From 23b1cdf73d95ae20f23e2fd198cafcd8fef529ad Mon Sep 17 00:00:00 2001 From: A5rocks Date: Fri, 22 Aug 2025 23:03:23 +0900 Subject: [PATCH] Drop Python 3.7 in CI Update some versions in various places (#233) --- .github/workflows/build.yml | 2 +- conftest.py | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a4cf92..6abacaa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] experimental: [false] steps: - uses: actions/checkout@v2 diff --git a/conftest.py b/conftest.py index 35a1846..5d0c9fa 100644 --- a/conftest.py +++ b/conftest.py @@ -13,7 +13,7 @@ from parso.utils import parse_version_string collect_ignore = ["setup.py"] -_SUPPORTED_VERSIONS = '3.6', '3.7', '3.8', '3.9', '3.10' +_SUPPORTED_VERSIONS = '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14' @pytest.fixture(scope='session') diff --git a/setup.py b/setup.py index a1c3ce1..b8fd359 100755 --- a/setup.py +++ b/setup.py @@ -44,6 +44,7 @@ setup( 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Text Editors :: Integrated Development Environments (IDE)', 'Topic :: Utilities',