Skip to content

Commit

Permalink
remove numpy requirement in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Jul 4, 2024
1 parent e8db3a6 commit ccd6a74
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
9 changes: 0 additions & 9 deletions .bumpversion.cfg

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
15 changes: 14 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
Expand Down Expand Up @@ -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}"'

0 comments on commit ccd6a74

Please sign in to comment.