diff --git a/.github/workflows/codespell-private.yml b/.github/workflows/codespell-private.yml index b0dd6b6e50..c81688fbc4 100644 --- a/.github/workflows/codespell-private.yml +++ b/.github/workflows/codespell-private.yml @@ -19,7 +19,6 @@ jobs: fail-fast: false matrix: python-version: - - '3.7' - '3.8' - '3.9' - '3.10' diff --git a/.github/workflows/codespell-windows.yml b/.github/workflows/codespell-windows.yml index 0b29bff622..46ca8f44fd 100644 --- a/.github/workflows/codespell-windows.yml +++ b/.github/workflows/codespell-windows.yml @@ -14,7 +14,7 @@ jobs: - name: Setup python uses: actions/setup-python@v4 with: - python-version: '3.7' + python-version: '3.8' - name: Install dependencies run: | python --version diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 199d0cc642..e56ccfe019 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -17,7 +17,7 @@ jobs: - name: Setup python uses: actions/setup-python@v4 with: - python-version: '3.7' + python-version: '3.8' - name: Install dependencies run: pip install -e .[types] diff --git a/README.rst b/README.rst index df90210562..ee28e0a3e3 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,7 @@ Useful links Requirements ------------ -Python 3.7 or above. +Python 3.8 or above. Installation ------------ diff --git a/pyproject.toml b/pyproject.toml index fbcb60ca33..c3348f18c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ name = "codespell" description = "Codespell" readme = { file = "README.rst", content-type = "text/x-rst" } -requires-python = ">=3.7" +requires-python = ">=3.8" license = {text = "GPL v2"} authors = [ {name = "Lucas De Marchi", email = "lucas.de.marchi@gmail.com"}, @@ -21,7 +21,6 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",