[ci] Pin prometheus_client to fix current test outages (#23749)

What: Pins prometheus_client to < 0.14.0, hopefully fixing today's CI outages
Why: New version of the python client (https://github.com/prometheus/client_python/releases) breaks our CI
This commit is contained in:
Kai Fricke 2022-04-06 14:22:22 -07:00 committed by GitHub
parent 8becbfa927
commit d27e73f851
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View file

@ -18,7 +18,7 @@ scikit-image
openpyxl
pandas==0.24.2
Pillow
prometheus_client
prometheus_client<0.14.0
py-spy
pygments
pytest==5.4.3

View file

@ -18,7 +18,7 @@ jsonschema
msgpack >= 1.0.0, < 2.0.0
numpy >= 1.16
opencensus
prometheus_client >= 0.7.1
prometheus_client >= 0.7.1, < 0.14.0
protobuf >= 3.8.0
py-spy >= 0.2.0
pydantic >= 1.8

View file

@ -3,5 +3,5 @@ aiosignal
aiohttp_cors
colorful
opencensus
prometheus_client>=0.7.1
prometheus_client >= 0.7.1, < 0.14.0
smart_open

View file

@ -213,7 +213,7 @@ if setup_spec.type == SetupType.RAY:
"requests",
"gpustat >= 1.0.0b1", # for windows
"opencensus",
"prometheus_client >= 0.7.1",
"prometheus_client >= 0.7.1, < 0.14.0",
"smart_open",
],
"serve": ["uvicorn==0.16.0", "requests", "starlette", "fastapi", "aiorwlock"],