From c88a62b07bef9ab56bf2526070e379d57f042627 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Tue, 4 Jul 2023 12:02:24 -0700 Subject: [PATCH] 2.4 prep: new dirs and python 3.7 is EOL --- .github/workflows/python-package.yml | 4 +--- pyproject.toml | 2 +- setup.cfg | 4 ++-- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index d81976f9..82cdee3d 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -23,7 +23,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - python-version: ["3.7","3.8","3.9","3.10","3.11"] + python-version: ["3.8","3.9","3.10","3.11"] exclude: - os: windows-latest python-version: "3.11" @@ -31,8 +31,6 @@ jobs: python-version: "3.9" - os: windows-latest python-version: "3.8" - - os: windows-latest - python-version: "3.7" steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index c31efc7b..3be64952 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ documentation = "https://dnspython.readthedocs.io/en/stable/" "Bug Tracker" = "https://github.com/rthalley/dnspython/issues" [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" httpx = {version=">=0.21.1", optional=true, python=">=3.6.2"} h2 = {version=">=4.1.0", optional=true, python=">=3.6.2"} idna = {version=">=2.1,<4.0", optional=true} diff --git a/setup.cfg b/setup.cfg index 4a27fbf0..756aeb1d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -31,7 +31,6 @@ classifiers = Topic :: Internet :: Name Service (DNS) Topic :: Software Development :: Libraries :: Python Modules Programming Language :: Python :: 3 - Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 @@ -40,12 +39,13 @@ provides = dns [options] packages = dns + dns.dnssecalgs dns.quic dns.rdtypes dns.rdtypes.IN dns.rdtypes.ANY dns.rdtypes.CH -python_requires = >=3.7 +python_requires = >=3.8 test_suite = tests setup_requires = setuptools>=44; setuptools_scm[toml]>=3.4.3 -- 2.47.3