Avoid type annotation problems in prom-client (#11834)

pull/11836/head
David Robertson 2022-01-26 12:06:56 +00:00 committed by GitHub
parent 95b3f952fa
commit c5815567a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

1
changelog.d/11834.misc Normal file
View File

@ -0,0 +1 @@
Workaround a type annotation problem in `prometheus_client` 0.13.0.

View File

@ -76,7 +76,8 @@ REQUIREMENTS = [
"msgpack>=0.5.2",
"phonenumbers>=8.2.0",
# we use GaugeHistogramMetric, which was added in prom-client 0.4.0.
"prometheus_client>=0.4.0",
# 0.13.0 has an incorrect type annotation, see #11832.
"prometheus_client>=0.4.0,<0.13.0",
# we use `order`, which arrived in attrs 19.2.0.
# Note: 21.1.0 broke `/sync`, see #9936
"attrs>=19.2.0,!=21.1.0",