From cf738c9c6f6e4e307bae5a2d908267ce3f966839 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Thu, 7 May 2020 05:52:17 -0700 Subject: [PATCH] Python 3.6 or later is required. --- .travis.yml | 8 -------- README.md | 2 +- setup.py | 6 ++---- tox.ini | 1 - 4 files changed, 3 insertions(+), 14 deletions(-) diff --git a/.travis.yml b/.travis.yml index ce1142f6..91646d7b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,8 @@ language: python python: - - "3.5" - "3.6" - "3.7" - "3.8" -matrix: - include: - - python: 3.7 # https://github.com/travis-ci/travis-ci/issues/9815 - dist: xenial - sudo: true - allow_failures: - - python: nightly branches: except: - python3 diff --git a/README.md b/README.md index 199324ca..e1363713 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ This is the development version of dnspython 2.0.0 ### Notices Python 2.x support ended with the release of 1.16.0. dnspython 2.0.0 and -later only support Python 3.4 and later. +later only support Python 3.6 and later. The ChangeLog has been discontinued. Please see the git history for detailed change information. diff --git a/setup.py b/setup.py index 322fdb53..b029b0fd 100755 --- a/setup.py +++ b/setup.py @@ -63,15 +63,13 @@ direct manipulation of DNS zones, messages, names, and records.""", "Topic :: Internet :: Name Service (DNS)", "Topic :: Software Development :: Libraries :: Python Modules", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", ], - 'python_requires': '>=3.4', + 'python_requires': '>=3.6', 'test_suite': 'tests', 'provides': ['dns'], - 'tests_require': ['typing ; python_version<"3.5"'], 'extras_require': { 'DOH': ['requests', 'requests-toolbelt'], 'IDNA': ['idna>=2.1'], diff --git a/tox.ini b/tox.ini index 7837025b..6417f2d9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,5 @@ [tox] envlist = - py35, py36, py37, flake8, -- 2.47.3