edgarrmondragon commented on code in PR #38095:
URL: https://github.com/apache/airflow/pull/38095#discussion_r1522385293
##########
dev/breeze/pyproject.toml:
##########
@@ -51,6 +51,9 @@ dependencies = [
"flit>=3.5.0",
"gitpython>=3.1.40",
"hatch==1.9.1",
+ # Importib_resources 6.2.0 break pytest_rewrite
+ # see https://github.com/python/importlib_resources/issues/299
+ "importlib_resources>=5.2,<6.2.0;python_version<\"3.9\"",
Review Comment:
imho these versions are broken (and will hopefully be fixed in a 6.3.1
release) since they introduced breaking changes without warning and in a minor
release
##########
dev/breeze/pyproject.toml:
##########
@@ -51,6 +51,9 @@ dependencies = [
"flit>=3.5.0",
"gitpython>=3.1.40",
"hatch==1.9.1",
+ # Importib_resources 6.2.0 break pytest_rewrite
+ # see https://github.com/python/importlib_resources/issues/299
+ "importlib_resources>=5.2,<6.2.0;python_version<\"3.9\"",
Review Comment:
```suggestion
"importlib_resources>=5.2,!=6.2.0,!=6.3.0;python_version<\"3.9\"",
```
##########
pyproject.toml:
##########
@@ -103,7 +103,9 @@ dependencies = [
"gunicorn>=20.1.0",
"httpx",
"importlib_metadata>=1.7;python_version<\"3.9\"",
- "importlib_resources>=5.2;python_version<\"3.9\"",
+ # Importib_resources 6.2.0 break pytest_rewrite
+ # see https://github.com/python/importlib_resources/issues/299
+ "importlib_resources>=5.2,<6.2.0;python_version<\"3.9\"",
Review Comment:
```suggestion
"importlib_resources>=5.2,!=6.2.0,!=6.3.0;python_version<\"3.9\"",
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]