Skip to content

Commit

Permalink
Revert "chore: Remove support for Python 3.6"
Browse files Browse the repository at this point in the history
This reverts commit 3bfd7ba.
  • Loading branch information
clundin25 committed Aug 16, 2023
1 parent 0f1a937 commit c9f006b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
5 changes: 1 addition & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Note that the extras pyopenssl and enterprise_cert should not be used together b

Supported Python Versions
^^^^^^^^^^^^^^^^^^^^^^^^^
Python >= 3.7
Python >= 3.6

Unsupported Python Versions
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand All @@ -45,9 +45,6 @@ Unsupported Python Versions
- Python 3.5: The last version of this library with support for Python 3.5
was `google.auth == 1.23.0`.

- Python 3.6: The last version of this library with support for Python 3.6
was `google.auth == 2.22.0`.

Documentation
-------------

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def mypy(session):
session.run("mypy", "-p", "google", "-p", "tests", "-p", "tests_async")


@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11"])
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"])
def unit(session):
constraints_path = str(
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,12 @@
),
install_requires=DEPENDENCIES,
extras_require=extras,
python_requires=">=3.7",
python_requires=">=3.6",
license="Apache 2.0",
keywords="google auth oauth client",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit c9f006b

Please sign in to comment.