From 09ab52281a3a174fcab04dc251de6f4b114bdc90 Mon Sep 17 00:00:00 2001 From: Stephane Rigaud Date: Thu, 25 May 2023 16:42:40 +0200 Subject: [PATCH 1/3] Update _version.py --- pyclesperanto/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyclesperanto/_version.py b/pyclesperanto/_version.py index faf55220..43c79efd 100644 --- a/pyclesperanto/_version.py +++ b/pyclesperanto/_version.py @@ -1,5 +1,5 @@ # pyclesperanto version -VERSION_CODE = (0, 6, 6) +VERSION_CODE = (0, 6, 7) VERSION_STATUS = "" VERSION = ".".join(str(x) for x in VERSION_CODE) + VERSION_STATUS From 7b013ce919d4a920af28974858a24b6eca5c55c7 Mon Sep 17 00:00:00 2001 From: Stephane Rigaud Date: Thu, 25 May 2023 16:45:41 +0200 Subject: [PATCH 2/3] Update setup.py --- setup.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/setup.py b/setup.py index 49da4193..92893792 100644 --- a/setup.py +++ b/setup.py @@ -49,13 +49,7 @@ "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Scientific/Engineering :: Image Processing", "Topic :: Scientific/Engineering :: Information Analysis", - "Programming Language :: Python", "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", "Operating System :: OS Independent", "License :: OSI Approved :: BSD License", ], From 6a5aee18a7e6f89995f6bd78c898955310555298 Mon Sep 17 00:00:00 2001 From: Stephane Rigaud Date: Thu, 25 May 2023 16:46:11 +0200 Subject: [PATCH 3/3] drop 3.7 support --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cfea26e9..2cb09497 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ testpaths = [ ] [tool.cibuildwheel] -build = ["cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*"] +build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*"] build-frontend = "build" build-verbosity = 1 test-command = "pytest {project}/tests/test_import.py"