mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2026-01-20 15:30:28 +01:00
updated redis dependency to be compatible with python 2.7
This commit is contained in:
parent
a707b81920
commit
3a53d32ff8
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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])))
|
||||
|
|
|
|||
Loading…
Reference in a new issue