From 2136202eee3837f9fe93c349a37d3b0672145839 Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Thu, 10 Mar 2022 12:16:25 -0600 Subject: [PATCH 1/4] add min wheel version --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index af1b9b9ff7..7713f0a50e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -50,7 +50,7 @@ install_requires = holidays >= 0.13 setup_requires = setuptools >= 47 - wheel + wheel >= 0.37.0 python_requires = >=3.7, <4 [options.extras_require] From 84c0a123cfc5f840f90d026c20161cd13010a4d2 Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Thu, 10 Mar 2022 12:16:34 -0600 Subject: [PATCH 2/4] lint on py3.10 only --- .github/workflows/lint_check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_check.yml b/.github/workflows/lint_check.yml index ef4370bd98..2d8903ccad 100644 --- a/.github/workflows/lint_check.yml +++ b/.github/workflows/lint_check.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python_version: ["3.7", "3.8", "3.9", "3.10"] + python_version: "3.10" steps: - name: Set up python ${{ matrix.python_version }} uses: actions/setup-python@v2 From 23bccc6b27b06dc2dc40c21b1313b6464c9c9cb0 Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Thu, 10 Mar 2022 12:21:08 -0600 Subject: [PATCH 3/4] update release notes --- docs/source/release_notes.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 0f168a88f1..8b6f045a15 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -22,6 +22,7 @@ Future Release * Upgrade moto requirement (:pr:`1929`, :pr:`1938`) * Add Python 3.9 linting, install complete, and docs build CI tests (:pr:`1934`) * Add support for Python 3.10 (:pr:`1940`) + * Add lower bound for wheel for minimum dependency checker and limit lint CI tests to Python 3.10 (:pr:`1945`) Thanks to the following people for contributing to this release: :user:`tamargrey`, :user:`kushal-gopal`, :user:`rwedge`, :user:`mingdavidqi`, :user:`andriyor`, :user:`thehomebrewnerd` From ae5054ea626dd841c0d2036822d63fd08f98543b Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Thu, 10 Mar 2022 12:21:55 -0600 Subject: [PATCH 4/4] update python version --- .github/workflows/lint_check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_check.yml b/.github/workflows/lint_check.yml index 2d8903ccad..0bee084cdf 100644 --- a/.github/workflows/lint_check.yml +++ b/.github/workflows/lint_check.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python_version: "3.10" + python_version: ["3.10"] steps: - name: Set up python ${{ matrix.python_version }} uses: actions/setup-python@v2