From 3a53d32ff82412d07bf2b4c538eabe1da6c0bc47 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Thu, 30 May 2019 15:53:29 +0200 Subject: [PATCH] updated redis dependency to be compatible with python 2.7 --- docs/source/changelog.rst | 10 +++++++++- docs/source/conf.py | 2 +- pyhamtools/version.py | 2 +- setup.py | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 2d4c7bd..57cb828 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,10 +1,18 @@ Changelog --------- +PyHamTools 0.7.3 +================ + +30. May 2019 + + * fixed dependency redis dependency to use at least a version compatible with python 2.7. + + PyHamTools 0.7.2 ================ -01. June 2019 +29. May 2019 * Changed Macedonia to North Macedonia * Updated test fixtures diff --git a/docs/source/conf.py b/docs/source/conf.py index 992d674..7c16ac4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -52,7 +52,7 @@ master_doc = 'index' # General information about the project. project = u'pyhamtools' -copyright = u'2018, Tobias Wellnitz, DH1TW' +copyright = u'2019, Tobias Wellnitz, DH1TW' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/pyhamtools/version.py b/pyhamtools/version.py index b813569..4845c9e 100644 --- a/pyhamtools/version.py +++ b/pyhamtools/version.py @@ -1,3 +1,3 @@ -VERSION = (0, 7, 2) +VERSION = (0, 7, 3) __release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:] __version__ = '.'.join((str(VERSION[0]), str(VERSION[1]))) diff --git a/setup.py b/setup.py index 362b6fe..02ffdcd 100755 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup(name='pyhamtools', "pyephem>=3.7.6.0", "beautifulsoup4>=4.7.1", "future>=0.17.1", - "redis>=2.22.0", + "redis>=2.10.6", ], **kw )