diff --git a/pyproject.toml b/pyproject.toml index 8348f06..0365586 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,17 +15,13 @@ numpy = [ {version = "<=1.21.1", python = "3.6"}, {version = ">=1.21.3,<1.22.0", python = "3.7"}, {version = ">=1.21.3,<1.25.0", python = "3.8"}, - {version = ">=1.26.4,<2.1.0", python = ">=3.9,<3.13"}, - {version = ">=2.1.0", python = ">=3.13"}, + {version = ">=1.26.4,<2.1.0", python = "3.9"}, + {version = ">=2.1.0", python = ">=3.10"}, ] matplotlib = ">=3.3.0" -pandas = [ - {version = "<=1.1.5", python = "<3.9"}, - {version = ">=1.0.0", python = ">=3.9"}, -] pillow = [ - {version = "<10.0.0", python = "<3.12"}, - {version = ">=10.0.0", python = ">=3.12"}, + {version = "<10.0.0", python = "<3.10"}, + {version = ">=10.0.0", python = ">=3.10"}, ] diff --git a/requirements.txt b/requirements.txt index 462b131..195c701 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,13 +2,8 @@ numpy <=1.21.1; python_version == '3.6' numpy>=1.21.3,<1.22.0; python_version == '3.7' numpy>=1.21.3,<1.25.0; python_version == '3.8' numpy>=1.26.4,<2.1.0; python_version == '3.9' -numpy>=1.26.4,<2.1.0; python_version == '3.10' -numpy>=1.26.4,<2.1.0; python_version == '3.11' -numpy>=1.26.4,<2.1.0; python_version == '3.12' -numpy>=2.1.0; python_version >= '3.13' +numpy>=2.1.0; python_version >= '3.10' matplotlib>=3.3.0; python_version >= '3.7' -pandas<= 1.1.5; python_version < '3.9' -pandas>= 1.0.0; python_version >= '3.9' -pillow<10.0.0; python_version < '3.12' -pillow>=10.0.0; python_version >= '3.12' +pillow<10.0.0; python_version < '3.10' +pillow>=10.0.0; python_version >= '3.10'