]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Remove support for EOL Python 2.6 and 3.3
authorTomas Krizek <tomas.krizek@nic.cz>
Wed, 18 Jul 2018 13:52:25 +0000 (15:52 +0200)
committerTomas Krizek <tomas.krizek@nic.cz>
Wed, 18 Jul 2018 13:59:10 +0000 (15:59 +0200)
.travis.yml
ChangeLog
README.md
tox.ini

index 6ea7f75cae6816f3fe11e4d9ae2feacd786fbd29..bcc3bf5b6ec31bbeda268d34a460a01fdff8e25c 100644 (file)
@@ -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
index e79663873979738f61daeefc2d217d6ba7adc66d..a8fe0b2a34d9b06fb2fa62ff6a863a72f04c18e6 100644 (file)
--- 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,
index bddad2244647e5a3fe1aab4eab8259ee1bddbdab..a1effca3627da438d0c7d804ecec6467e88cc713 100644 (file)
--- 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 ff9b86d108a3856e99bb0764e7fcc805b9ea3cd3..796833214bbde5c7ebe66ff840f2363f118f7414 100644 (file)
--- 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