Skip to content

Commit 0524019

Browse files
committed
toxgen: Add huggingface_hub
1 parent b2238ca commit 0524019

File tree

3 files changed

+28
-13
lines changed

3 files changed

+28
-13
lines changed

.github/workflows/test-integrations-ai.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
strategy:
105105
fail-fast: false
106106
matrix:
107-
python-version: ["3.8","3.9","3.11","3.12"]
107+
python-version: ["3.8","3.9","3.10","3.11","3.12","3.13"]
108108
# python3.6 reached EOL and is no longer being supported on
109109
# new versions of hosted runners on Github Actions
110110
# ubuntu-20.04 is the last version that supported python3.6

scripts/populate_tox/populate_tox.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@
7979
"gcp",
8080
"httpx",
8181
"huey",
82-
"huggingface_hub",
8382
"langchain",
8483
"langchain_notiktoken",
8584
"openai",

tox.ini

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# The file (and all resulting CI YAMLs) then need to be regenerated via
1111
# "scripts/generate-test-files.sh".
1212
#
13-
# Last generated: 2025-04-08T10:33:11.499210+00:00
13+
# Last generated: 2025-04-15T11:35:26.105701+00:00
1414

1515
[tox]
1616
requires =
@@ -151,13 +151,20 @@ envlist =
151151
# These come from the populate_tox.py script. Eventually we should move all
152152
# integration tests there.
153153

154+
# ~~~ AI ~~~
155+
{py3.8,py3.10,py3.11}-huggingface_hub-v0.22.2
156+
{py3.8,py3.10,py3.11}-huggingface_hub-v0.25.2
157+
{py3.8,py3.12,py3.13}-huggingface_hub-v0.28.1
158+
{py3.8,py3.12,py3.13}-huggingface_hub-v0.30.2
159+
160+
154161
# ~~~ DBs ~~~
155162
{py3.7,py3.11,py3.12}-clickhouse_driver-v0.2.9
156163

157164
{py3.6}-pymongo-v3.5.1
158165
{py3.6,py3.10,py3.11}-pymongo-v3.13.0
159166
{py3.6,py3.9,py3.10}-pymongo-v4.0.2
160-
{py3.9,py3.12,py3.13}-pymongo-v4.11.3
167+
{py3.9,py3.12,py3.13}-pymongo-v4.12.0
161168

162169
{py3.6}-redis_py_cluster_legacy-v1.3.6
163170
{py3.6,py3.7}-redis_py_cluster_legacy-v2.0.0
@@ -175,11 +182,11 @@ envlist =
175182
{py3.8,py3.12,py3.13}-launchdarkly-v9.10.0
176183

177184
{py3.8,py3.12,py3.13}-openfeature-v0.7.5
178-
{py3.9,py3.12,py3.13}-openfeature-v0.8.0
185+
{py3.9,py3.12,py3.13}-openfeature-v0.8.1
179186

180187
{py3.7,py3.12,py3.13}-statsig-v0.55.3
181188
{py3.7,py3.12,py3.13}-statsig-v0.56.0
182-
{py3.7,py3.12,py3.13}-statsig-v0.57.2
189+
{py3.7,py3.12,py3.13}-statsig-v0.57.3
183190

184191
{py3.8,py3.12,py3.13}-unleash-v6.0.1
185192
{py3.8,py3.12,py3.13}-unleash-v6.1.0
@@ -202,14 +209,15 @@ envlist =
202209
{py3.8,py3.10,py3.11}-strawberry-v0.209.8
203210
{py3.8,py3.11,py3.12}-strawberry-v0.227.7
204211
{py3.8,py3.11,py3.12}-strawberry-v0.245.0
205-
{py3.9,py3.12,py3.13}-strawberry-v0.263.2
212+
{py3.9,py3.12,py3.13}-strawberry-v0.264.0
206213

207214

208215
# ~~~ Network ~~~
209216
{py3.7,py3.8}-grpc-v1.32.0
210217
{py3.7,py3.9,py3.10}-grpc-v1.44.0
211218
{py3.7,py3.10,py3.11}-grpc-v1.58.3
212219
{py3.9,py3.12,py3.13}-grpc-v1.71.0
220+
{py3.9,py3.12,py3.13}-grpc-v1.72.0rc1
213221

214222

215223
# ~~~ Tasks ~~~
@@ -245,7 +253,7 @@ envlist =
245253
{py3.6,py3.9,py3.10}-starlette-v0.16.0
246254
{py3.7,py3.10,py3.11}-starlette-v0.26.1
247255
{py3.8,py3.11,py3.12}-starlette-v0.36.3
248-
{py3.9,py3.12,py3.13}-starlette-v0.46.1
256+
{py3.9,py3.12,py3.13}-starlette-v0.46.2
249257

250258

251259
# ~~~ Web 2 ~~~
@@ -513,13 +521,20 @@ deps =
513521
# These come from the populate_tox.py script. Eventually we should move all
514522
# integration tests there.
515523

524+
# ~~~ AI ~~~
525+
huggingface_hub-v0.22.2: huggingface_hub==0.22.2
526+
huggingface_hub-v0.25.2: huggingface_hub==0.25.2
527+
huggingface_hub-v0.28.1: huggingface_hub==0.28.1
528+
huggingface_hub-v0.30.2: huggingface_hub==0.30.2
529+
530+
516531
# ~~~ DBs ~~~
517532
clickhouse_driver-v0.2.9: clickhouse-driver==0.2.9
518533

519534
pymongo-v3.5.1: pymongo==3.5.1
520535
pymongo-v3.13.0: pymongo==3.13.0
521536
pymongo-v4.0.2: pymongo==4.0.2
522-
pymongo-v4.11.3: pymongo==4.11.3
537+
pymongo-v4.12.0: pymongo==4.12.0
523538
pymongo: mockupdb
524539

525540
redis_py_cluster_legacy-v1.3.6: redis-py-cluster==1.3.6
@@ -538,11 +553,11 @@ deps =
538553
launchdarkly-v9.10.0: launchdarkly-server-sdk==9.10.0
539554

540555
openfeature-v0.7.5: openfeature-sdk==0.7.5
541-
openfeature-v0.8.0: openfeature-sdk==0.8.0
556+
openfeature-v0.8.1: openfeature-sdk==0.8.1
542557

543558
statsig-v0.55.3: statsig==0.55.3
544559
statsig-v0.56.0: statsig==0.56.0
545-
statsig-v0.57.2: statsig==0.57.2
560+
statsig-v0.57.3: statsig==0.57.3
546561
statsig: typing_extensions
547562

548563
unleash-v6.0.1: UnleashClient==6.0.1
@@ -574,7 +589,7 @@ deps =
574589
strawberry-v0.209.8: strawberry-graphql[fastapi,flask]==0.209.8
575590
strawberry-v0.227.7: strawberry-graphql[fastapi,flask]==0.227.7
576591
strawberry-v0.245.0: strawberry-graphql[fastapi,flask]==0.245.0
577-
strawberry-v0.263.2: strawberry-graphql[fastapi,flask]==0.263.2
592+
strawberry-v0.264.0: strawberry-graphql[fastapi,flask]==0.264.0
578593
strawberry: httpx
579594
strawberry-v0.209.8: pydantic<2.11
580595
strawberry-v0.227.7: pydantic<2.11
@@ -586,6 +601,7 @@ deps =
586601
grpc-v1.44.0: grpcio==1.44.0
587602
grpc-v1.58.3: grpcio==1.58.3
588603
grpc-v1.71.0: grpcio==1.71.0
604+
grpc-v1.72.0rc1: grpcio==1.72.0rc1
589605
grpc: protobuf
590606
grpc: mypy-protobuf
591607
grpc: types-protobuf
@@ -657,7 +673,7 @@ deps =
657673
starlette-v0.16.0: starlette==0.16.0
658674
starlette-v0.26.1: starlette==0.26.1
659675
starlette-v0.36.3: starlette==0.36.3
660-
starlette-v0.46.1: starlette==0.46.1
676+
starlette-v0.46.2: starlette==0.46.2
661677
starlette: pytest-asyncio
662678
starlette: python-multipart
663679
starlette: requests

0 commit comments

Comments
 (0)