From: Tomas Krizek Date: Wed, 18 Jul 2018 13:52:25 +0000 (+0200) Subject: Remove support for EOL Python 2.6 and 3.3 X-Git-Tag: v1.16.0~18^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34395e492c871bb120ed4e28927387441dcd70ca;p=thirdparty%2Fdnspython.git Remove support for EOL Python 2.6 and 3.3 --- diff --git a/.travis.yml b/.travis.yml index 6ea7f75c..bcc3bf5b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,10 @@ language: python python: - #- "2.6" - "2.7" - # 3.2 make unicode literal handling difficult. - # we dropped that, see https://github.com/rthalley/dnspython/pull/148 - # for comments - #- "3.2" - - "3.3" - "3.4" - "3.5" - "3.6" - #- "3.5-dev" # 3.5 development branch - #- "3.6-dev" # 3.6 development branch - #- "nightly" # currently points to 3.6-dev + #- "nightly" matrix: allow_failures: - python: nightly @@ -22,5 +14,5 @@ branches: install: - pip install unittest2 pylint pycrypto ecdsa idna script: - - if [[ ($TRAVIS_PYTHON_VERSION != '2.6') ]]; then make lint; fi + - make lint - make test diff --git a/ChangeLog b/ChangeLog index e7966387..a8fe0b2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2018-07-18 Tomas Krizek + + * Support for obsolete Python 2.6 and 3.3 (both EOL) dropped. + 2017-01-02 Bob Halley * dns/e164.py: to_e164() was returning binary instead of text, diff --git a/README.md b/README.md index bddad224..a1effca3 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ XXXTBSXXX ## REQUIREMENTS -Python 2.6 or later. +Python 2.7 or 3.4+. ## HOME PAGE diff --git a/tox.ini b/tox.ini index ff9b86d1..79683321 100644 --- a/tox.ini +++ b/tox.ini @@ -1,13 +1,9 @@ [tox] envlist = - py26, py27, - py30, - py31, - py32, - py33, py34, -# py35, + py35, + py36, flake8, pylint, coverage