From 987b6b6768a91aa17757fd3326ee1b3d63772f27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 3 Oct 2023 07:44:31 +0200 Subject: [PATCH] deps: Bump Python version --- .github/workflows/test.yml | 3 +-- pyproject.toml | 4 ++-- setup.cfg | 7 +------ 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0d99a67..6b565b0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,11 +10,10 @@ jobs: strategy: matrix: python-version: - - '3.7' - - '3.8' - '3.9' - '3.10' - '3.11' + - '3.12' name: Python ${{ matrix.python-version }} steps: diff --git a/pyproject.toml b/pyproject.toml index 9bad19e..d610b07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.black] -target-version = ['py37'] +target-version = ['py39'] [tool.isort] profile = "black" @@ -44,7 +44,7 @@ select = [ "SLF", "N" ] -target-version = "py37" +target-version = "py39" [tool.ruff.mccabe] max-complexity = 16 diff --git a/setup.cfg b/setup.cfg index 83646ea..f7f44f8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,11 +18,6 @@ classifiers = Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: 3.7 - Programming Language :: Python :: 3.8 - Programming Language :: Python :: 3.9 - Programming Language :: Python :: 3.10 - Programming Language :: Python :: 3.11 Topic :: Software Development :: Internationalization Topic :: Software Development :: Localization Topic :: Utilities @@ -37,7 +32,7 @@ project_urls = [options] packages = find_namespace: -python_requires = >=3.7 +python_requires = >=3.9 include_package_data = 1 zip_safe = 0