Skip to content

Commit

Permalink
chore: tweak 'python_requires' to match supported Python versions (#114)
Browse files Browse the repository at this point in the history
* chore: tweak 'python_requires' to match supported Python versions

Release-As: 1.24.0

* tests: drop Python 3.5 for unit tests
  • Loading branch information
tseaver committed Dec 14, 2020
1 parent fdbed0f commit 9ac3708
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Expand Up @@ -71,13 +71,13 @@ def default(session):
session.run(*pytest_args)


@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8", "3.9"])
@nox.session(python=["2.7", "3.6", "3.7", "3.8", "3.9"])
def unit(session):
"""Run the unit test suite."""
default(session)


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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -101,7 +101,7 @@
namespace_packages=namespaces,
install_requires=dependencies,
extras_require=extras,
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*",
include_package_data=True,
zip_safe=False,
)

0 comments on commit 9ac3708

Please sign in to comment.