summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Krizek <tomas.krizek@nic.cz>2018-07-18 15:52:25 +0200
committerTomas Krizek <tomas.krizek@nic.cz>2018-07-18 15:59:10 +0200
commit34395e492c871bb120ed4e28927387441dcd70ca (patch)
treee91612bdf3d9af7bde5789c59cf9604e1cba5397
parent3b8e597f5ac20b3c73b5646cc0f8b198f9890ebf (diff)
downloaddnspython-34395e492c871bb120ed4e28927387441dcd70ca.tar.gz
Remove support for EOL Python 2.6 and 3.3
-rw-r--r--.travis.yml12
-rw-r--r--ChangeLog4
-rw-r--r--README.md2
-rw-r--r--tox.ini8
4 files changed, 9 insertions, 17 deletions
diff --git a/.travis.yml b/.travis.yml
index 6ea7f75..bcc3bf5 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 e796638..a8fe0b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2018-07-18 Tomas Krizek <tomas.krizek@nic.cz>
+
+ * Support for obsolete Python 2.6 and 3.3 (both EOL) dropped.
+
2017-01-02 Bob Halley <halley@dnspython.org>
* dns/e164.py: to_e164() was returning binary instead of text,
diff --git a/README.md b/README.md
index bddad22..a1effca 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 ff9b86d..7968332 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