]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Python 3.6 or later is required.
authorBob Halley <halley@dnspython.org>
Thu, 7 May 2020 12:52:17 +0000 (05:52 -0700)
committerBob Halley <halley@dnspython.org>
Thu, 7 May 2020 12:52:17 +0000 (05:52 -0700)
.travis.yml
README.md
setup.py
tox.ini

index ce1142f64ce1a077ddfd4fe9bc26e7194be7b5bc..91646d7baf2428565e014d14b9bf360e84a680be 100644 (file)
@@ -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
index 199324cadbe2564e9c4358d5a5d6c7d798141eca..e136371312d46f11eee09f36f6e702b54f4f9c31 100644 (file)
--- 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.
index 322fdb53de5895518d775e5c9a1fe9ccbb66535e..b029b0fd8b6332877e4b907ca4a7fd00402c67da 100755 (executable)
--- 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 7837025b5a8abf13b76d9ef7b4f5136f4ce7b818..6417f2d9b67d1ffb1620865074e30682dd1a95b7 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,5 @@
 [tox]
 envlist =
-    py35,
     py36,
     py37,
     flake8,