]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
remove python 3.9
authorBob Halley <halley@dnspython.org>
Sat, 23 Aug 2025 19:27:40 +0000 (12:27 -0700)
committerBob Halley <halley@dnspython.org>
Sat, 23 Aug 2025 19:27:40 +0000 (12:27 -0700)
.github/workflows/ci.yml
README.md
doc/whatsnew.rst
pyproject.toml

index debaaaeeb5e65e94ca8e058813bbb33ae53de3b4..edc5669a0d07fdceef5463697966c96d95c7b875 100644 (file)
@@ -25,7 +25,6 @@ jobs:
       matrix:
         os: [ubuntu-latest, windows-latest]
         python-version:
-          - "3.9"
           - "3.10"
           - "3.11"
           - "3.12"
index 4e54050d6ff853374af131afb2fe42f85c97ef74..b4ca6b7834ee7a78535321b110f9cf9ca62bfc17 100644 (file)
--- a/README.md
+++ b/README.md
@@ -86,7 +86,7 @@ Note that you can install any combination of the above, e.g.:
 
 ### Notices
 
-Python 2.x support ended with the release of 1.16.0.  `dnspython` supports Python 3.9
+Python 2.x support ended with the release of 1.16.0.  `dnspython` supports Python 3.10
 and later.  Future support  is aligned with the lifetime of the Python 3 versions.
 
 Documentation has moved to
index 522dc814c70365b2323e0d1a40ad4b7b2ab7ad01..7c42d04c4887ceb72c9d40744200a2d831e7b53f 100644 (file)
@@ -6,10 +6,12 @@ What's New in dnspython
 2.8.0 (in development)
 ----------------------
 
-* dns/win32util.py now supports explicitly setting the configuration method used to get 
+* dns/win32util.py now supports explicitly setting the configuration method used to get
   system dns info, using the set_config_method() function.   There is a new configuration
   method that uses the Win32 API, which can be set using set_config_method(ConfigMethod.Win32).
 
+* The minimum supported Python version is now 3.10.
+
 2.7.0
 -----
 
index 2b8a9924632e3f5d28279281005ab2e9aae93d75..9251c3e8c16191096da35ff1d6ee92cfc7314983 100644 (file)
@@ -18,14 +18,13 @@ classifiers = [
     "Topic :: Internet :: Name Service (DNS)",
     "Topic :: Software Development :: Libraries :: Python Modules",
     "Programming Language :: Python :: 3",
-    "Programming Language :: Python :: 3.9",
     "Programming Language :: Python :: 3.10",
     "Programming Language :: Python :: 3.11",
     "Programming Language :: Python :: 3.12",
     "Programming Language :: Python :: 3.13",
 ]
 readme = "README.md"
-requires-python = ">=3.9"
+requires-python = ">=3.10"
 dependencies = []
 dynamic = ["version"]