Skip to content

Commit

Permalink
Change pydicom version requirement (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
scaramallion authored Jun 6, 2020
1 parent 67a9f33 commit 9c79296
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 14 deletions.
12 changes: 0 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions docs/changelog/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Release Notes
.. toctree::
:maxdepth: 1

v1.5.1
v1.5.0
v1.4.1
v1.4.0
Expand Down
9 changes: 9 additions & 0 deletions docs/changelog/v1.5.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.. _v1.5.1:

1.5.1
=====

Changes
.....

* Switch *pydicom* dependency to >= 1.4.2 (:issue:`493`)
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ Applications
Release Notes
=============

* :doc:`v1.5.1 </changelog/v1.5.1>`
* :doc:`v1.5.0 </changelog/v1.5.0>`
* :doc:`v1.4.1 </changelog/v1.4.1>`
* :doc:`v1.4.0 </changelog/v1.4.0>`
Expand Down
2 changes: 1 addition & 1 deletion pynetdicom/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import re


__version__ = '1.5.0'
__version__ = '1.5.1'


VERSION_PATTERN = r"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
)

0 comments on commit 9c79296

Please sign in to comment.