Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/google-auth-httplib2/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
DEFAULT_PYTHON_VERSION = "3.14"

UNIT_TEST_PYTHON_VERSIONS: List[str] = [
"3.9",
"3.10",
"3.11",
"3.12",
Comment thread
chalmerlowe marked this conversation as resolved.
Expand All @@ -57,7 +56,7 @@
UNIT_TEST_EXTRAS: List[str] = []
UNIT_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = {}

SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.9"]
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.10"]
SYSTEM_TEST_STANDARD_DEPENDENCIES: List[str] = [
"mock",
"pytest",
Expand Down
2 changes: 0 additions & 2 deletions packages/google-auth-httplib2/pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@
filterwarnings =
# treat all warnings as errors
error
# Remove after support for Python 3.7 is dropped
ignore:After January 1, 2024, new releases of this library will drop support for Python 3.7:DeprecationWarning
ignore:.*Please upgrade to the latest Python version.*:FutureWarning
ignore:(?s).*using a Python version.*past its end of life.*:FutureWarning
3 changes: 1 addition & 2 deletions packages/google-auth-httplib2/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,12 @@
long_description=long_description,
url="https://github.com/googleapis/google-cloud-python/packages/google-auth-httplib2",
py_modules=["google_auth_httplib2"],
python_requires=">=3.9",
python_requires=">=3.10",
install_requires=DEPENDENCIES,
license="Apache 2.0",
keywords="google auth oauth client",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Comment thread
chalmerlowe marked this conversation as resolved.
Expand Down
9 changes: 9 additions & 0 deletions packages/google-auth-httplib2/testing/constraints-3.10.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# This constraints file is used to check that lower bounds
# are correct in setup.py
# List *all* library dependencies and extras in this file.
# Pin the version to the lower bound.
#
# e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev",
# Then this file should have foo==1.14.0
google-auth==1.32.0
httplib2==0.19.0
9 changes: 0 additions & 9 deletions packages/google-auth-httplib2/testing/constraints-3.9.txt

This file was deleted.

Loading