From 9c792960bb02c75424c0196d7eddb7dee58db9a3 Mon Sep 17 00:00:00 2001 From: scaramallion Date: Sat, 6 Jun 2020 13:02:41 +1000 Subject: [PATCH] Change pydicom version requirement (#503) --- .travis.yml | 12 ------------ docs/changelog/index.rst | 1 + docs/changelog/v1.5.1.rst | 9 +++++++++ docs/index.rst | 1 + pynetdicom/_version.py | 2 +- setup.py | 2 +- 6 files changed, 13 insertions(+), 14 deletions(-) create mode 100644 docs/changelog/v1.5.1.rst diff --git a/.travis.yml b/.travis.yml index 2f080eb87d..6b278446ab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,18 +4,6 @@ language: python # Build against pydicom master and current release matrix: include: - - name: "Python 3.5, pydicom master" - python: "3.5" - env: TEST_SUITE=pydicom_master - - name: "Python 3.6, pydicom master" - python: "3.6" - env: TEST_SUITE=pydicom_master - - name: "Python 3.7, pydicom master" - python: "3.7" - env: TEST_SUITE=pydicom_master - - name: "Python 3.8, pydicom master" - python: "3.8" - env: TEST_SUITE=pydicom_master - name: "Python 2.7, pydicom release" python: "2.7" env: TEST_SUITE=pydicom_release diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index c947ccc6c3..2a82036637 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -7,6 +7,7 @@ Release Notes .. toctree:: :maxdepth: 1 + v1.5.1 v1.5.0 v1.4.1 v1.4.0 diff --git a/docs/changelog/v1.5.1.rst b/docs/changelog/v1.5.1.rst new file mode 100644 index 0000000000..a65d2992c4 --- /dev/null +++ b/docs/changelog/v1.5.1.rst @@ -0,0 +1,9 @@ +.. _v1.5.1: + +1.5.1 +===== + +Changes +..... + +* Switch *pydicom* dependency to >= 1.4.2 (:issue:`493`) diff --git a/docs/index.rst b/docs/index.rst index 40a516809d..ed7adc460e 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -119,6 +119,7 @@ Applications Release Notes ============= +* :doc:`v1.5.1 ` * :doc:`v1.5.0 ` * :doc:`v1.4.1 ` * :doc:`v1.4.0 ` diff --git a/pynetdicom/_version.py b/pynetdicom/_version.py index 6397dac86c..e7c2c3b1ce 100644 --- a/pynetdicom/_version.py +++ b/pynetdicom/_version.py @@ -10,7 +10,7 @@ import re -__version__ = '1.5.0' +__version__ = '1.5.1' VERSION_PATTERN = r""" diff --git a/setup.py b/setup.py index f79cba39e2..4c1abb0cc7 100644 --- a/setup.py +++ b/setup.py @@ -47,5 +47,5 @@ "Topic :: Scientific/Engineering :: Medical Science Apps.", "Topic :: Software Development :: Libraries", ], - install_requires = ["pydicom==1.4.2"], + install_requires = ["pydicom>=1.4.2"], )