Skip to content

Commit 4970e6d

Browse files
authored
fix(lib-injection): remove python-json-logger from library compatibility check (#11817)
1 parent 2a6774e commit 4970e6d

4 files changed

+28
-7
lines changed

lib-injection/sources/min_compatible_versions.csv

+7-3
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@ asyncpg,~=0.23
2424
asynctest,==0.13.0
2525
austin-python,~=1.0
2626
avro,0
27+
azure.functions,0
2728
blinker,0
2829
boto3,==1.34.49
2930
bottle,>=0.12
3031
bytecode,0
3132
cassandra-driver,~=3.24.0
3233
cattrs,<23.1.1
3334
celery,~=5.1.0
35+
celery[redis],0
3436
cfn-lint,~=0.53.1
3537
channels,~=3.0
3638
cherrypy,>=17
@@ -68,12 +70,13 @@ flask,~=0.12.0
6870
flask-caching,~=1.10.0
6971
flask-openapi3,0
7072
gevent,~=20.12.0
73+
google-ai-generativelanguage,0
7174
google-generativeai,0
7275
googleapis-common-protos,0
7376
graphene,~=3.0.0
7477
graphql-core,~=3.2.0
7578
graphql-relay,0
76-
greenlet,~=1.0
79+
greenlet,~=1.0.0
7780
grpcio,~=1.34.0
7881
gunicorn,==20.0.4
7982
gunicorn[gevent],0
@@ -97,9 +100,10 @@ langchain-pinecone,==0.1.0
97100
langchain_experimental,==0.0.47
98101
logbook,~=1.0.0
99102
loguru,~=0.4.0
103+
lxml,0
100104
lz4,0
101105
mako,~=1.1.0
102-
mariadb,~=1.0
106+
mariadb,~=1.0.0
103107
markupsafe,<2.0
104108
mock,0
105109
molten,>=1.0
@@ -149,7 +153,6 @@ pytest-memray,~=1.7.0
149153
pytest-mock,==2.0.0
150154
pytest-sanic,~=1.6.2
151155
python-consul,>=1.1
152-
python-json-logger,==2.0.7
153156
python-memcached,0
154157
python-multipart,0
155158
ragas,==0.1.21
@@ -180,6 +183,7 @@ typing_extensions,0
180183
urllib3,~=1.0
181184
uwsgi,0
182185
vcrpy,==4.2.1
186+
vertexai,0
183187
vertica-python,>=0.6.0
184188
virtualenv-clone,0
185189
websockets,<11.0

min_compatible_versions.csv

+7-3
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@ asyncpg,~=0.23
2424
asynctest,==0.13.0
2525
austin-python,~=1.0
2626
avro,0
27+
azure.functions,0
2728
blinker,0
2829
boto3,==1.34.49
2930
bottle,>=0.12
3031
bytecode,0
3132
cassandra-driver,~=3.24.0
3233
cattrs,<23.1.1
3334
celery,~=5.1.0
35+
celery[redis],0
3436
cfn-lint,~=0.53.1
3537
channels,~=3.0
3638
cherrypy,>=17
@@ -68,12 +70,13 @@ flask,~=0.12.0
6870
flask-caching,~=1.10.0
6971
flask-openapi3,0
7072
gevent,~=20.12.0
73+
google-ai-generativelanguage,0
7174
google-generativeai,0
7275
googleapis-common-protos,0
7376
graphene,~=3.0.0
7477
graphql-core,~=3.2.0
7578
graphql-relay,0
76-
greenlet,~=1.0
79+
greenlet,~=1.0.0
7780
grpcio,~=1.34.0
7881
gunicorn,==20.0.4
7982
gunicorn[gevent],0
@@ -97,9 +100,10 @@ langchain-pinecone,==0.1.0
97100
langchain_experimental,==0.0.47
98101
logbook,~=1.0.0
99102
loguru,~=0.4.0
103+
lxml,0
100104
lz4,0
101105
mako,~=1.1.0
102-
mariadb,~=1.0
106+
mariadb,~=1.0.0
103107
markupsafe,<2.0
104108
mock,0
105109
molten,>=1.0
@@ -149,7 +153,6 @@ pytest-memray,~=1.7.0
149153
pytest-mock,==2.0.0
150154
pytest-sanic,~=1.6.2
151155
python-consul,>=1.1
152-
python-json-logger,==2.0.7
153156
python-memcached,0
154157
python-multipart,0
155158
ragas,==0.1.21
@@ -180,6 +183,7 @@ typing_extensions,0
180183
urllib3,~=1.0
181184
uwsgi,0
182185
vcrpy,==4.2.1
186+
vertexai,0
183187
vertica-python,>=0.6.0
184188
virtualenv-clone,0
185189
websockets,<11.0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
fixes:
3+
- |
4+
lib-injection: remove python-json-logger from library compatibility check.

scripts/min_compatible_versions.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,16 @@
1414

1515
OUT_FILENAME = "min_compatible_versions.csv"
1616
OUT_DIRECTORIES = (".", "lib-injection/sources")
17-
IGNORED_PACKAGES = {"setuptools", "attrs", "pytest-randomly", "pillow", "botocore", "pytest-asyncio", "click"}
17+
IGNORED_PACKAGES = {
18+
"attrs",
19+
"botocore",
20+
"click",
21+
"pillow",
22+
"pytest-asyncio",
23+
"pytest-randomly",
24+
"python-json-logger",
25+
"setuptools",
26+
}
1827

1928

2029
def _format_version_specifiers(spec: Set[str]) -> Set[str]:

0 commit comments

Comments
 (0)