From 892f37cda468df3d10b821da97ee53f022aa3287 Mon Sep 17 00:00:00 2001 From: Kostiantyn Kuleshov Date: Mon, 7 Oct 2024 10:22:57 +0000 Subject: [PATCH] Probably fixed Python 3.12 support --- pyproject.toml | 6 ++---- requirements/_.txt | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1e3d365..12d01e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ authors = [{ name = "Denis Lehmann" }] maintainers = [{ name = "Profitroll" }] description = "A colorful wallpaper generator" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" license = { text = "GPL3" } classifiers = [ "Development Status :: 3 - Alpha", @@ -17,8 +17,6 @@ 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", @@ -45,7 +43,7 @@ dev = { file = "requirements/dev.txt" } where = ["src"] [tool.black] -target-version = ['py38', 'py39', 'py310', 'py311', 'py312'] +target-version = ['py39', 'py310', 'py311', 'py312'] [tool.isort] profile = "black" diff --git a/requirements/_.txt b/requirements/_.txt index b309d5c..d3fcd5b 100644 --- a/requirements/_.txt +++ b/requirements/_.txt @@ -1,3 +1,3 @@ colour==0.1.5 -numpy~=1.24.0,<1.25.0 +numpy~=2.0.1,<2.1.0 pillow~=10.4.0 \ No newline at end of file