Compare commits

..

No commits in common. "master" and "v0.0.5" have entirely different histories.

6 changed files with 20 additions and 22 deletions

View File

@ -15,7 +15,7 @@ jobs:
container: catthehacker/ubuntu:act-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3

View File

@ -19,9 +19,6 @@
],
"automerge": true
}
],
"ignoreDeps": [
"numpy"
]
}

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.8"
license = { text = "GPL3" }
classifiers = [
"Development Status :: 3 - Alpha",
@ -17,10 +17,11 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
@ -43,7 +44,7 @@ dev = { file = "requirements/dev.txt" }
where = ["src"]
[tool.black]
target-version = ['py39', 'py310', 'py311', 'py312']
target-version = ['py38', 'py39', 'py310', 'py311']
[tool.isort]
profile = "black"
@ -61,7 +62,7 @@ strict = true
show_error_codes = true
[tool.pylint.main]
py-version = 3.9
py-version = 3.8
[tool.coverage.run]
source = ["huepaper"]

View File

@ -1,3 +1,3 @@
colour==0.1.5
numpy~=2.0.1,<2.1.0
pillow~=11.0.0
numpy~=1.24.0,<1.25.0
pillow~=10.2.0

View File

@ -1,9 +1,9 @@
black==24.10.0
build==1.2.2.post1
isort==5.13.2
mypy==1.13.0
pylint==3.3.1
pytest-cov==6.0.0
pytest==8.3.3
tox==4.23.2
twine==5.1.1
black==23.7.0
build==0.10.0
isort==5.12.0
mypy==1.4.1
pylint==2.17.7
pytest-cov==4.1.0
pytest==7.4.4
tox==4.7.0
twine==4.0.2

View File

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