Compare commits
1 Commits
master
...
9929f80e6c
Author | SHA1 | Date | |
---|---|---|---|
9929f80e6c |
@@ -11,10 +11,11 @@ on:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-24.04
|
||||
runs-on: ubuntu-latest
|
||||
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
|
||||
@@ -22,8 +23,6 @@ jobs:
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
cache: 'pip'
|
||||
cache-dependency-path: './requirements/*'
|
||||
env:
|
||||
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
|
||||
- name: Install dependencies
|
||||
|
@@ -19,9 +19,6 @@
|
||||
],
|
||||
"automerge": true
|
||||
}
|
||||
],
|
||||
"ignoreDeps": [
|
||||
"numpy"
|
||||
]
|
||||
}
|
||||
|
||||
|
@@ -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"]
|
||||
|
@@ -1,3 +1,3 @@
|
||||
colour==0.1.5
|
||||
numpy~=2.0.1,<2.1.0
|
||||
pillow~=11.3.0
|
||||
numpy~=1.24.0,<1.25.0
|
||||
pillow~=10.2.0
|
@@ -1,9 +1,9 @@
|
||||
black==25.1.0
|
||||
build==1.3.0
|
||||
black==23.12.1
|
||||
build==0.10.0
|
||||
isort==5.13.2
|
||||
mypy==1.17.1
|
||||
pylint==3.3.8
|
||||
pytest-cov==6.2.1
|
||||
pytest==8.4.2
|
||||
tox==4.30.2
|
||||
twine==6.2.0
|
||||
mypy==1.8.0
|
||||
pylint==3.0.3
|
||||
pytest-cov==4.1.0
|
||||
pytest==7.4.4
|
||||
tox==4.7.0
|
||||
twine==4.0.2
|
Reference in New Issue
Block a user