From 5d3fae0056297540355bb7c6c112703cfaa4b6ce Mon Sep 17 00:00:00 2001 From: Bryan Davis Date: Sun, 6 Jan 2019 21:50:08 -0700 Subject: [PATCH] Prep for 0.7.0 release --- .gitignore | 1 + iptools/__init__.py | 2 +- setup.py | 8 ++++---- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index b11bdd6..33baecb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *.egg-info *.pyc /.coverage +/.python-version /.tox/ /.venv/ /build/ diff --git a/iptools/__init__.py b/iptools/__init__.py index dd0fd67..3a966f7 100644 --- a/iptools/__init__.py +++ b/iptools/__init__.py @@ -47,7 +47,7 @@ def next(iterable): from . import ipv4 from . import ipv6 -__version__ = '0.7.0-dev' +__version__ = '0.7.0' __all__ = ( 'IpRange', diff --git a/setup.py b/setup.py index 996ba0c..a09de1c 100644 --- a/setup.py +++ b/setup.py @@ -32,11 +32,11 @@ 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 2.5', - 'Programming Language :: Python :: 2.6', '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', + 'Programming Language :: Python :: 3.7', 'Topic :: Utilities', 'Topic :: Internet', ],