Skip to content

Commit

Permalink
Release 1.01
Browse files Browse the repository at this point in the history
  • Loading branch information
autocracy committed Dec 1, 2020
1 parent b8eb507 commit 5ef3b5d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
Version 1.01 (2020-12-01)
------------
* Update to support up to Python 3.9

Version 1.00 (2019-02-27)
------------
* Fix IPv6 string interpretation for small ints
* Various Python3 language fixes
* consider 127.0 range LOOPBACK not PRIVATE
Expand Down
2 changes: 1 addition & 1 deletion IPy.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
https://github.com/haypo/python-ipy
"""

__version__ = '1.00'
__version__ = '1.01'

import bisect
import types
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ tests:
@echo "[ run unit tests in python 2 ]"
PYTHONPATH=$(PWD) $(PYTHON)2.7 test/test_IPy.py || exit $$?
@echo "[ run unit tests in python 3 ]"
PYTHONPATH=$(PWD) $(PYTHON)3.6 test/test_IPy.py || exit $$?
PYTHONPATH=$(PWD) $(PYTHON)3.9 test/test_IPy.py || exit $$?
@echo
@echo "[ test README in python 2 ]"
$(PYTHON)2.7 test_doc.py || exit $$?
@echo "[ test README in python 3 ]"
$(PYTHON)3.6 test_doc.py || exit $$?
$(PYTHON)3.9 test_doc.py || exit $$?

egg: clean
$(PYTHON) setup.py sdist bdist_egg
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ unique address ranges and will aggregate overlapping ranges. ::
Compatibility and links
=======================

IPy 1.00 works on Python version 2.6 - 3.7.
IPy 1.01 works on Python version 2.6 - 3.7.

The IP module should work in Python 2.5 as long as the subtraction operation
is not used. IPSet requires features of the collecitons class which appear
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import sys
from distutils.core import setup

VERSION = '1.00'
VERSION = '1.01'

options = {}

Expand Down

0 comments on commit 5ef3b5d

Please sign in to comment.