diff --git a/.github/workflows/schemacode_ci.yml b/.github/workflows/schemacode_ci.yml index db6e77700a..cff7d01d54 100644 --- a/.github/workflows/schemacode_ci.yml +++ b/.github/workflows/schemacode_ci.yml @@ -56,7 +56,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest"] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] include: - os: macos-latest python-version: 3 diff --git a/tools/schemacode/pyproject.toml b/tools/schemacode/pyproject.toml index 22547f33ef..c0a581cd85 100644 --- a/tools/schemacode/pyproject.toml +++ b/tools/schemacode/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [tool.black] line-length = 99 -target-version = ['py37'] +target-version = ['py39'] include = '\.pyi?$' exclude = ''' ( diff --git a/tools/schemacode/setup.cfg b/tools/schemacode/setup.cfg index f75732b593..01f4f2c726 100644 --- a/tools/schemacode/setup.cfg +++ b/tools/schemacode/setup.cfg @@ -13,13 +13,14 @@ classifiers = Intended Audience :: Science/Research Topic :: Scientific/Engineering :: Information Analysis License :: OSI Approved :: MIT License - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 [options] -python_requires = >=3.8 +python_requires = >=3.9 install_requires = click pyyaml