Dropped support for Python 3.9 (#156)
All checks were successful
Tests / test (3.10) (push) Successful in 2m17s
Tests / test (3.11) (push) Successful in 1m5s
Tests / test (3.12) (push) Successful in 1m8s
Tests / test (3.13) (push) Successful in 6m19s

This commit is contained in:
2025-10-31 02:41:56 +01:00
parent ac2bcec3ad
commit 4127bcc2a3
3 changed files with 9 additions and 9 deletions

View File

@@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3

View File

@@ -9,7 +9,7 @@ authors = [{ name = "Denis Lehmann" }]
maintainers = [{ name = "Profitroll" }]
description = "A colorful wallpaper generator"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
license = { text = "GPL3" }
classifiers = [
"Development Status :: 3 - Alpha",
@@ -17,10 +17,10 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
@@ -43,7 +43,7 @@ dev = { file = "requirements/dev.txt" }
where = ["src"]
[tool.black]
target-version = ['py39', 'py310', 'py311', 'py312']
target-version = ['py310', 'py311', 'py312', 'py313']
[tool.isort]
profile = "black"
@@ -61,7 +61,7 @@ strict = true
show_error_codes = true
[tool.pylint.main]
py-version = 3.9
py-version = 3.10
[tool.coverage.run]
source = ["huepaper"]

View File

@@ -1,14 +1,14 @@
[tox]
minversion = 3.9.0
envlist = py39, py310, py311, py312
minversion = 3.10.0
envlist = py310, py311, py312, py313
isolated_build = true
[gh-actions]
python =
3.9: py39
python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
[testenv]
setenv =