Skip to content
Merged
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
12 changes: 11 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,13 @@ envlist =
gevent_contrib-py{37,38}-gevent{13,14}
# gevent 1.0 is not python 3 compatible
gevent_contrib-{py27}-gevent{10}
grpc_contrib-{py27,py35,py36,py37,py38}-grpc{112,113,114,115,116,117,118,119,120,121,122}
# use grpcio versions with bdist_wheel packages for python versions
# py27,py35,py36: grpcio>=1.13.0
# py37: grpcio>=1.13.0
# py38: grpcio>=1.24.3
grpc_contrib-{py27,py35,py36}-grpc{,112,113,114,115,116,117,118,119,120,121,122}
grpc_contrib-{py37}-grpc{,113,114,115,116,117,118,119,120,121,122}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
grpc_contrib-{py37}-grpc{,113,114,115,116,117,118,119,120,121,122}
grpc_contrib-{py37}-grpc{113,114,115,116,117,118,119,120,121,122,latest}

grpc_contrib-{py38}-grpc{,1243}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
grpc_contrib-{py38}-grpc{,1243}
grpc_contrib-{py38}-grpc{1243,latest}

httplib_contrib-{py27,py35,py36,py37,py38}
jinja2_contrib-{py27,py35,py36,py37,py38}-jinja{27,28,29,210}
mako_contrib-{py27,py35,py36,py37,py38}-mako{010,100}
Expand Down Expand Up @@ -310,6 +316,7 @@ deps =
gevent12: gevent>=1.2,<1.3
gevent13: gevent>=1.3,<1.4
gevent14: gevent>=1.4,<1.5
grpc: grpcio
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
grpc: grpcio
grpclatest: grpcio

I think this is the convention we're following for the other libraries

grpc112: grpcio>=1.12.0,<1.13.0
grpc113: grpcio>=1.13.0,<1.14.0
grpc114: grpcio>=1.14.0,<1.15.0
Expand All @@ -321,6 +328,8 @@ deps =
grpc120: grpcio>=1.20.0,<1.21.0
grpc121: grpcio>=1.21.0,<1.22.0
grpc122: grpcio>=1.22.0,<1.23.0
grpc1243: grpcio>=1.24.3,<1.25.0
grpc: googleapis-common-protos
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
grpc: googleapis-common-protos
grpclatest: googleapis-common-protos

grpc112: googleapis-common-protos
grpc113: googleapis-common-protos
grpc114: googleapis-common-protos
Expand All @@ -332,6 +341,7 @@ deps =
grpc120: googleapis-common-protos
grpc121: googleapis-common-protos
grpc122: googleapis-common-protos
grpc1243: googleapis-common-protos
jinja27: jinja2>=2.7,<2.8
jinja28: jinja2>=2.8,<2.9
jinja29: jinja2>=2.9,<2.10
Expand Down