From 51868f42829f3eb9c6a73ca7493010921952be59 Mon Sep 17 00:00:00 2001 From: Claudio Fantacci Date: Fri, 17 Feb 2023 04:56:39 -0800 Subject: [PATCH] Drop support for Python 3.7 and set minimal Python version to 3.8 PiperOrigin-RevId: 510402117 --- .github/workflows/ci.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 163cd40..7ffef83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10"] os: [ubuntu-latest] steps: diff --git a/setup.py b/setup.py index 9f693cd..9f276e0 100644 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ def _parse_requirements(requirements_txt_path): extras_require=_EXTRA_PACKAGES, tests_require=_parse_requirements( os.path.join(_CURRENT_DIR, 'requirements_tests.txt')), - requires_python='>=3.7', + requires_python='>=3.8', include_package_data=True, zip_safe=False, # PyPI package information.