diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2661963800..2dde286b7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v1 diff --git a/pyproject.toml b/pyproject.toml index be676a83d1..b96fed9b52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ dynamic = ["version"] description = "py3status: an extensible i3status wrapper written in python" readme = "README.md" license = "BSD-2-Clause" -requires-python = ">=3.7" +requires-python = ">=3.8" authors = [ { name = "Ultrabug", email = "ultrabug@ultrabug.net" }, ] @@ -20,11 +20,11 @@ classifiers = [ "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 3", - "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", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules", ] @@ -70,7 +70,7 @@ test = [ ] [[tool.hatch.envs.test.matrix]] -python = ["py37", "py38", "py39", "py310", "py311"] +python = ["py38", "py39", "py310", "py311", "py312"] type = ["default"] [tool.hatch.envs.style] @@ -94,7 +94,7 @@ format = [ [tool.black] line-length = 100 -target-version = ["py310"] +target-version = ["py311"] skip-string-normalization = true [tool.isort]