-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: define max version for pydicom to avoid breaking changes (#267)
* fix: define max version for pydicom to avoid breaking changes * chore: bump version and update changelog
- Loading branch information
1 parent
ebae1c6
commit 830966d
Showing
3 changed files
with
7 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
__copyright__ = "Copyright 2016-2023, Vanessa Sochat" | ||
__license__ = "MIT" | ||
|
||
__version__ = "0.3.24" | ||
__version__ = "0.3.25" | ||
AUTHOR = "Vanessa Sochat" | ||
AUTHOR_EMAIL = "[email protected]" | ||
NAME = "deid" | ||
|
@@ -12,8 +12,8 @@ | |
LICENSE = "LICENSE" | ||
|
||
INSTALL_REQUIRES = ( | ||
("matplotlib", {"min_version": None}), | ||
("numpy", {"min_version": "1.20"}), | ||
("pydicom", {"min_version": "2.2.2"}), | ||
("python-dateutil", {"min_version": None}), | ||
"matplotlib", | ||
"numpy>=1.20", | ||
"pydicom>=2.2.2,<3.0.0", | ||
"python-dateutil", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters