jscheffl commented on code in PR #39946:
URL: https://github.com/apache/airflow/pull/39946#discussion_r1623649283
##########
dev/breeze/src/airflow_breeze/utils/packages.py:
##########
@@ -443,7 +443,9 @@ def get_install_requirements(provider_id: str,
version_suffix: str) -> str:
dependencies = get_provider_requirements(provider_id)
else:
dependencies = PROVIDER_DEPENDENCIES.get(provider_id)["deps"]
- install_requires = [apply_version_suffix(clause, version_suffix) for
clause in dependencies]
+ install_requires = [
+ apply_version_suffix(clause, version_suffix).replace('"', '\\"') for
clause in dependencies
Review Comment:
Does the python version in the dependency actually _need_ to be quoted? As
the version is also w/o quotes...
--
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]