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 container: catthehacker/ubuntu:act-latest
strategy: strategy:
matrix: matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"] python-version: ["3.8", "3.9", "3.10", "3.11"]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

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

View File

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

View File

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

View File

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

View File

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