From 50650254ac683a28e39c936dfc4cc425ee1bcfd5 Mon Sep 17 00:00:00 2001 From: Maciej Bieniek Date: Tue, 24 Oct 2023 17:21:51 +0000 Subject: [PATCH] Bump minimum Python version to 3.10 (#241) --- .github/workflows/test.yml | 1 - setup.py | 4 ++-- tox.ini | 6 +++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a8ddc1e..ef96cac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,6 @@ jobs: strategy: matrix: python-version: - - "3.9" - "3.10" - "3.11" - "3.12" diff --git a/setup.py b/setup.py index 03532fb..001b86e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ PROJECT_DIR = Path(__file__).parent.resolve() README_FILE = PROJECT_DIR / "README.md" -VERSION = "1.4.0" +VERSION = "2.0.0" with open("requirements.txt", encoding="utf-8") as file: requirements = file.read().splitlines() @@ -30,9 +30,9 @@ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", "Typing :: Typed", ], diff --git a/tox.ini b/tox.ini index 39aa2c3..f7006a2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,12 +1,12 @@ [tox] -envlist = py39, py310, py311, lint, typing, coverage +envlist = py310, py311, py312, lint, typing, coverage skip_missing_interpreters = True [gh-actions] python = - 3.9: py39, lint, typing, coverage - 3.10: py310 + 3.10: py310, lint, typing, coverage 3.11: py311 + 3.12: py312 [testenv] commands =