aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2017-12-16 22:19:07 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2017-12-16 22:19:07 +0100
commitd180a090575de2ca7f6eecf0007a5793875935b8 (patch)
treea8e1c83267e4e18a50523b2792d38ced69c1b5cc
parent6d0ace0bcf06d405bf57a70c28eec5d6895cad41 (diff)
downloadplatform_external_python_ipaddress-d180a090575de2ca7f6eecf0007a5793875935b8.tar.gz
platform_external_python_ipaddress-d180a090575de2ca7f6eecf0007a5793875935b8.tar.bz2
platform_external_python_ipaddress-d180a090575de2ca7f6eecf0007a5793875935b8.zip
release 1.0.19
-rw-r--r--ipaddress.py2
-rw-r--r--setup.py5
2 files changed, 5 insertions, 2 deletions
diff --git a/ipaddress.py b/ipaddress.py
index 801a5fb..8cfdd58 100644
--- a/ipaddress.py
+++ b/ipaddress.py
@@ -14,7 +14,7 @@ from __future__ import unicode_literals
import itertools
import struct
-__version__ = '1.0.18'
+__version__ = '1.0.19'
# Compatibility functions
_compat_int_types = (int,)
diff --git a/setup.py b/setup.py
index 7a548a1..d01ac63 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ except ImportError:
settings = {
'name': 'ipaddress',
- 'version': '1.0.18',
+ 'version': '1.0.19',
'description': 'IPv4/IPv6 manipulation library',
'long_description': 'Port of the 3.3+ ipaddress module to 2.6, 2.7, 3.2',
'author': 'Philipp Hagemeister',
@@ -25,6 +25,9 @@ settings = {
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
],
'py_modules': ['ipaddress'],
}