-
Notifications
You must be signed in to change notification settings - Fork 533
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[9] Move the Network group over to the tox gen script #3979
Changes from 16 commits
4f0b90c
c2c6450
3ac285d
840cc72
6b9417f
c971981
c2d59ae
65cc78c
efaa55f
474c679
8904a1b
8572489
b907e69
984f423
0a94a13
30a6fbd
11e199f
2c89fec
f11c049
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,12 +136,6 @@ envlist = | |
# GCP | ||
{py3.7}-gcp | ||
|
||
# gRPC | ||
{py3.7,py3.9}-grpc-v{1.39} | ||
{py3.7,py3.10}-grpc-v{1.49} | ||
{py3.7,py3.11}-grpc-v{1.59} | ||
{py3.8,py3.11,py3.12}-grpc-latest | ||
|
||
# HTTPX | ||
{py3.6,py3.9}-httpx-v{0.16,0.18} | ||
{py3.6,py3.10}-httpx-v{0.20,0.22} | ||
|
@@ -229,9 +223,6 @@ envlist = | |
{py3.6,py3.8}-redis_py_cluster_legacy-v{1,2} | ||
# no -latest, not developed anymore | ||
|
||
# Requests | ||
{py3.6,py3.8,py3.12,py3.13}-requests | ||
|
||
# RQ (Redis Queue) | ||
{py3.6}-rq-v{0.6} | ||
{py3.6,py3.9}-rq-v{0.13,1.0} | ||
|
@@ -306,6 +297,18 @@ envlist = | |
{py3.9,py3.12,py3.13}-strawberry-v0.259.0 | ||
|
||
|
||
# ~~~ Network ~~~ | ||
{py3.7,py3.8}-grpc-v1.32.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, you have to look at Python versions in the Pinned group instead, that's what gets generated by this script. |
||
{py3.7,py3.9,py3.10}-grpc-v1.44.0 | ||
{py3.7,py3.10,py3.11}-grpc-v1.58.3 | ||
{py3.8,py3.12,py3.13}-grpc-v1.70.0 | ||
|
||
{py3.6,py3.7,py3.8}-requests-v2.23.0 | ||
{py3.6,py3.8,py3.9}-requests-v2.26.0 | ||
{py3.7,py3.10,py3.11}-requests-v2.29.0 | ||
{py3.8,py3.11,py3.12}-requests-v2.32.3 | ||
|
||
|
||
|
||
[testenv] | ||
deps = | ||
|
@@ -479,16 +482,6 @@ deps = | |
flask-v3: Flask~=3.0 | ||
flask-latest: Flask | ||
|
||
# gRPC | ||
grpc: protobuf | ||
grpc: mypy-protobuf | ||
grpc: types-protobuf | ||
grpc: pytest-asyncio | ||
grpc-v1.39: grpcio~=1.39.0 | ||
grpc-v1.49: grpcio~=1.49.1 | ||
grpc-v1.59: grpcio~=1.59.0 | ||
grpc-latest: grpcio | ||
|
||
# HTTPX | ||
httpx-v0.16: pytest-httpx==0.10.0 | ||
httpx-v0.18: pytest-httpx==0.12.0 | ||
|
@@ -629,9 +622,6 @@ deps = | |
redis_py_cluster_legacy-v1: redis-py-cluster~=1.0 | ||
redis_py_cluster_legacy-v2: redis-py-cluster~=2.0 | ||
|
||
# Requests | ||
requests: requests>=2.0 | ||
|
||
# RQ (Redis Queue) | ||
# https://github.com/jamesls/fakeredis/issues/245 | ||
rq-v{0.6}: fakeredis<1.0 | ||
|
@@ -755,6 +745,22 @@ deps = | |
strawberry: httpx | ||
|
||
|
||
# ~~~ Network ~~~ | ||
grpc-v1.32.0: grpcio==1.32.0 | ||
grpc-v1.44.0: grpcio==1.44.0 | ||
grpc-v1.58.3: grpcio==1.58.3 | ||
grpc-v1.70.0: grpcio==1.70.0 | ||
grpc: protobuf | ||
grpc: mypy-protobuf | ||
grpc: types-protobuf | ||
grpc: pytest-asyncio | ||
|
||
requests-v2.23.0: requests==2.23.0 | ||
requests-v2.26.0: requests==2.26.0 | ||
requests-v2.29.0: requests==2.29.0 | ||
requests-v2.32.3: requests==2.32.3 | ||
|
||
|
||
|
||
setenv = | ||
PYTHONDONTWRITEBYTECODE=1 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we be concerned that tests for 3.8 and 3.11 are gone?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same reply as in the other PRs -- we're shrinking the Latest group by taking stuff out of it. So this is ok. It's all moving into the Pinned group instead.