From 02a785bdea9ab6b1512eb4ef9ace465b4182dc0a Mon Sep 17 00:00:00 2001 From: Alexander Nasuta <alexander.nasuta@ima.rwth-aachen.de> Date: Wed, 26 Feb 2025 13:47:29 +0000 Subject: [PATCH] lowered required python version to 3.10 --- .gitignore | 2 ++ pyproject.toml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index eb7a0b8..374f4db 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +.pypitoken + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] diff --git a/pyproject.toml b/pyproject.toml index e53d00c..1dbc6a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "jsp-instance-utils" -version = "1.0.1" +version = "1.0.2" description = "A package containg benchmark instances for the Job Shop Scheduling Problem (JSP) scraped from " readme = "README.md" authors = [{ name = "Alexander Nasuta", email = "alexander.nasuta@wzl-iqs.rwth-aachen.de" }] @@ -22,7 +22,7 @@ dependencies = [ "beautifulsoup4", "jsp-vis", ] -requires-python = ">=3.11" +requires-python = ">=3.10" [project.optional-dependencies] dev = [ -- GitLab