Skip to content

Commit

Permalink
Drop support for Python 3.7 and set minimal Python version to 3.8
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 510402117
  • Loading branch information
claudiofantacci authored and PIXDev committed Feb 17, 2023
1 parent 00bad1d commit 51868f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 51868f4

Please sign in to comment.