Skip to content

Commit

Permalink
Numpy 2 (#169)
Browse files Browse the repository at this point in the history
* Unpin numpy

* Update dicomweb client dependency

* Fix warnings on writing annotations

* Update lock

* Update version
  • Loading branch information
erikogabrielsson authored Oct 21, 2024
1 parent 4a34c00 commit e88c91c
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 63 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.21.2] - 2024-10-21

### Fixed

- Unpinned requirement for numpy to support numpy 2.

## [0.21.1] - 2024-10-17

### Fixed
Expand Down Expand Up @@ -399,7 +405,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release of wsidicom

[Unreleased]: https://github.com/imi-bigpicture/wsidicom/compare/0.21.0..HEAD
[Unreleased]: https://github.com/imi-bigpicture/wsidicom/compare/0.21.2..HEAD
[0.21.2]: https://github.com/imi-bigpicture/wsidicom/compare/v0.21.1..v0.21.2
[0.21.1]: https://github.com/imi-bigpicture/wsidicom/compare/v0.21.0..v0.21.1
[0.21.0]: https://github.com/imi-bigpicture/wsidicom/compare/v0.20.6..v0.21.0
[0.20.6]: https://github.com/imi-bigpicture/wsidicom/compare/v0.20.5..v0.20.6
[0.20.5]: https://github.com/imi-bigpicture/wsidicom/compare/v0.20.4..v0.20.5
Expand Down
125 changes: 72 additions & 53 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wsidicom"
version = "0.21.1"
version = "0.21.2"
description = "Tools for handling DICOM based whole scan images"
authors = ["Erik O Gabrielsson <[email protected]>"]
license = "Apache-2.0"
Expand All @@ -19,10 +19,10 @@ classifiers = [

[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.22.0"
numpy = ">=1.22.0"
pydicom = ">=3.0.0"
Pillow = ">=9.1.1"
dicomweb-client = "^0.59.1"
dicomweb-client = "^0.59.2"
marshmallow = "^3.20.1"
imagecodecs = { version = "^2024.1.1, !=2024.9.22", optional = true }
pylibjpeg-rle = { version = "^1.3.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion wsidicom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from wsidicom.web import WsiDicomWebClient
from wsidicom.wsidicom import WsiDicom

__version__ = "0.21.1"
__version__ = "0.21.2"

__all__ = [
"settings",
Expand Down
Loading

0 comments on commit e88c91c

Please sign in to comment.