From ccd6a74a5ba4e39f14533687305372d6523b053e Mon Sep 17 00:00:00 2001 From: vincentsarago Date: Thu, 4 Jul 2024 11:52:51 +0200 Subject: [PATCH] remove numpy requirement in pyproject.toml --- .bumpversion.cfg | 9 --------- CHANGES.md | 4 ++++ pyproject.toml | 15 ++++++++++++++- 3 files changed, 18 insertions(+), 10 deletions(-) delete mode 100644 .bumpversion.cfg diff --git a/.bumpversion.cfg b/.bumpversion.cfg deleted file mode 100644 index db3374b..0000000 --- a/.bumpversion.cfg +++ /dev/null @@ -1,9 +0,0 @@ -[bumpversion] -current_version = 5.3.2 -commit = True -tag = True -tag_name = {new_version} - -[bumpversion:file:rio_cogeo/__init__.py] -search = __version__ = "{current_version}" -replace = __version__ = "{new_version}" diff --git a/CHANGES.md b/CHANGES.md index 043f795..a300c22 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Release Notes +## 5.3.3 (2024-07-04) + +* remove Numpy requirement in `pyproject.toml` + ## 5.3.2 (2024-06-13) * do not set output size in the intermediate VRT diff --git a/pyproject.toml b/pyproject.toml index 9ee605c..21538fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,6 @@ dynamic = ["version"] dependencies = [ "click>=7.0", "rasterio>=1.3.3", - "numpy~=1.15", "morecantile>=5.0,<6.0", "pydantic~=2.0", ] @@ -101,3 +100,17 @@ ignore = [ "B008", # do not perform function calls in argument defaults "B905", # ignore zip() without an explicit strict= parameter, only support with python >3.10 ] + + +[tool.bumpversion] +current_version = "5.3.2" +search = "{current_version}" +replace = "{new_version}" +tag = true +commit = true +tag_name = "{new_version}" + +[[tool.bumpversion.files]] +filename = "rio_cogeo/__init__.py" +search = '__version__ = "{current_version}"' +replace = '__version__ = "{new_version}"'