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
install:
- pip install unittest2 pylint pycrypto ecdsa idna
script:
- - if [[ ($TRAVIS_PYTHON_VERSION != '2.6') ]]; then make lint; fi
+ - make lint
- make test
+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,