Skip to content

Commit 9ac3708

Browse files
authored
chore: tweak 'python_requires' to match supported Python versions (googleapis#114)
* chore: tweak 'python_requires' to match supported Python versions Release-As: 1.24.0 * tests: drop Python 3.5 for unit tests
1 parent fdbed0f commit 9ac3708

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ def default(session):
7171
session.run(*pytest_args)
7272

7373

74-
@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8", "3.9"])
74+
@nox.session(python=["2.7", "3.6", "3.7", "3.8", "3.9"])
7575
def unit(session):
7676
"""Run the unit test suite."""
7777
default(session)
7878

7979

80-
@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8", "3.9"])
80+
@nox.session(python=["2.7", "3.6", "3.7", "3.8", "3.9"])
8181
def unit_grpc_gcp(session):
8282
"""Run the unit test suite with grpcio-gcp installed."""
8383

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
namespace_packages=namespaces,
102102
install_requires=dependencies,
103103
extras_require=extras,
104-
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
104+
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*",
105105
include_package_data=True,
106106
zip_safe=False,
107107
)

0 commit comments

Comments
 (0)