From 18e037321320242d89352d68efc4458060a0e621 Mon Sep 17 00:00:00 2001 From: Gleb Date: Thu, 4 Nov 2021 01:29:47 +0200 Subject: [PATCH] #193 'bump pydicom' - bumped pydicom to 2.2.2, local tests green, changelog update, added PyCharm to gitignore --- .gitignore | 2 ++ CHANGELOG.md | 1 + deid/version.py | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 930a0fb0..4b3d5416 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,8 @@ build pypi.sh private +# dev tools +.idea .vscode # osx diff --git a/CHANGELOG.md b/CHANGELOG.md index e45db406..3871c627 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and **Merged pull requests**. Critical items to know are: Referenced versions in headers are tagged on Github, in parentheses are for pypi. ## [vxx](https://github.com/pydicom/deid/tree/master) (master) + - updated pydicom dependency from 2.1.1 to 2.2.2 [#194](https://github.com/pydicom/deid/issues/194) - various LGTM alert fixes [#186](https://github.com/pydicom/deid/pull/186) - bug fix for exception when attempting to jitter DA/DT which cannot be jittered (space) [#189] (https://github.com/pydicom/deid/issues/189) (0.2.27) - adding support to manipulate file meta [#183](https://github.com/pydicom/deid/issues/183) (0.2.26) diff --git a/deid/version.py b/deid/version.py index 96ec428c..682d58c4 100644 --- a/deid/version.py +++ b/deid/version.py @@ -34,6 +34,6 @@ INSTALL_REQUIRES = ( ("matplotlib", {"min_version": None}), ("numpy", {"min_version": None}), - ("pydicom", {"exact_version": "2.1.1"}), + ("pydicom", {"exact_version": "2.2.2"}), ("python-dateutil", {"min_version": None}), )