mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
[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:
parent
8becbfa927
commit
d27e73f851
4 changed files with 5 additions and 5 deletions
|
@ -18,7 +18,7 @@ scikit-image
|
||||||
openpyxl
|
openpyxl
|
||||||
pandas==0.24.2
|
pandas==0.24.2
|
||||||
Pillow
|
Pillow
|
||||||
prometheus_client
|
prometheus_client<0.14.0
|
||||||
py-spy
|
py-spy
|
||||||
pygments
|
pygments
|
||||||
pytest==5.4.3
|
pytest==5.4.3
|
||||||
|
|
|
@ -18,7 +18,7 @@ jsonschema
|
||||||
msgpack >= 1.0.0, < 2.0.0
|
msgpack >= 1.0.0, < 2.0.0
|
||||||
numpy >= 1.16
|
numpy >= 1.16
|
||||||
opencensus
|
opencensus
|
||||||
prometheus_client >= 0.7.1
|
prometheus_client >= 0.7.1, < 0.14.0
|
||||||
protobuf >= 3.8.0
|
protobuf >= 3.8.0
|
||||||
py-spy >= 0.2.0
|
py-spy >= 0.2.0
|
||||||
pydantic >= 1.8
|
pydantic >= 1.8
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
aiohttp>=3.7
|
aiohttp >= 3.7
|
||||||
aiosignal
|
aiosignal
|
||||||
aiohttp_cors
|
aiohttp_cors
|
||||||
colorful
|
colorful
|
||||||
opencensus
|
opencensus
|
||||||
prometheus_client>=0.7.1
|
prometheus_client >= 0.7.1, < 0.14.0
|
||||||
smart_open
|
smart_open
|
|
@ -213,7 +213,7 @@ if setup_spec.type == SetupType.RAY:
|
||||||
"requests",
|
"requests",
|
||||||
"gpustat >= 1.0.0b1", # for windows
|
"gpustat >= 1.0.0b1", # for windows
|
||||||
"opencensus",
|
"opencensus",
|
||||||
"prometheus_client >= 0.7.1",
|
"prometheus_client >= 0.7.1, < 0.14.0",
|
||||||
"smart_open",
|
"smart_open",
|
||||||
],
|
],
|
||||||
"serve": ["uvicorn==0.16.0", "requests", "starlette", "fastapi", "aiorwlock"],
|
"serve": ["uvicorn==0.16.0", "requests", "starlette", "fastapi", "aiorwlock"],
|
||||||
|
|
Loading…
Add table
Reference in a new issue