From 53dc89d0fba2306f694de45740909dbbde51c8c8 Mon Sep 17 00:00:00 2001 From: Vince Reuter Date: Wed, 3 Apr 2024 00:37:35 +0200 Subject: [PATCH] drop python 3.12 support --- poetry.lock | 4 ++-- pyproject.toml | 8 ++------ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/poetry.lock b/poetry.lock index a3c0ab3..74fcd5c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1128,5 +1128,5 @@ files = [ [metadata] lock-version = "2.0" -python-versions = ">= 3.10.0, < 3.13" -content-hash = "2bba894e16818a85b8a24befb4b557ac18e8113ce5d784b0e5316df9278edbab" +python-versions = ">= 3.10.0, < 3.12" +content-hash = "3c1083b7fc97f745afb8fc4648e11a6d39ffcc9204512e9756b7e27bdfbf92aa" diff --git a/pyproject.toml b/pyproject.toml index 9021005..1be7727 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,6 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering :: Bio-Informatics", "Typing :: Typed", ] @@ -25,11 +24,8 @@ include = ["examples"] [tool.poetry.dependencies] # These are the main runtime dependencies. -python = ">= 3.10.0, < 3.13" -numpy = [ - {version = "^1.24.2", python = "<3.12"}, - {version = "^1.25", python = ">=3.12"} -] +python = ">= 3.10.0, < 3.12" +numpy = "^1.24.2" numpydoc_decorator = { git = "https://github.com/alimanfoo/numpydoc_decorator.git", branch = "main" } pandas = "^1.5.3" scikit-image = "^0.20.0"