File tree 3 files changed +3
-18
lines changed
3 files changed +3
-18
lines changed Original file line number Diff line number Diff line change @@ -935,17 +935,10 @@ function check_boto_upgrade() {
935
935
# We need to include few dependencies to pass pip check with other dependencies:
936
936
# * oss2 as dependency as otherwise jmespath will be bumped (sync with alibaba provider)
937
937
# * cryptography is kept for snowflake-connector-python limitation (sync with snowflake provider)
938
- # * requests needs to be limited to be compatible with apache beam (sync with apache-beam provider)
939
- # * yandexcloud requirements for requests does not match those of apache.beam and latest botocore
940
- # Both requests and yandexcloud exclusion above might be removed after
941
- # https://github.com/apache/beam/issues/32080 is addressed
942
- # This is already addressed and planned for 2.59.0 release.
943
- # When you remove yandexcloud and opensearch from the above list, you can also remove the
944
- # optional providers_dependencies exclusions from "test_example_dags.py" in "tests/always".
945
938
set -x
946
939
# shellcheck disable=SC2086
947
940
${PACKAGING_TOOL_CMD} install ${EXTRA_INSTALL_FLAGS} --upgrade boto3 botocore \
948
- "oss2>=2.14.0" "cryptography<43.0.0" "requests!=2.32.*,<3.0.0,>=2.24.0 "
941
+ "oss2>=2.14.0" "cryptography<43.0.0" "opensearch-py "
949
942
set +x
950
943
pip check
951
944
}
Original file line number Diff line number Diff line change @@ -255,17 +255,10 @@ function check_boto_upgrade() {
255
255
# We need to include few dependencies to pass pip check with other dependencies:
256
256
# * oss2 as dependency as otherwise jmespath will be bumped (sync with alibaba provider)
257
257
# * cryptography is kept for snowflake-connector-python limitation (sync with snowflake provider)
258
- # * requests needs to be limited to be compatible with apache beam (sync with apache-beam provider)
259
- # * yandexcloud requirements for requests does not match those of apache.beam and latest botocore
260
- # Both requests and yandexcloud exclusion above might be removed after
261
- # https://github.com/apache/beam/issues/32080 is addressed
262
- # This is already addressed and planned for 2.59.0 release.
263
- # When you remove yandexcloud and opensearch from the above list, you can also remove the
264
- # optional providers_dependencies exclusions from "test_example_dags.py" in "tests/always".
265
258
set -x
266
259
# shellcheck disable=SC2086
267
260
${PACKAGING_TOOL_CMD} install ${EXTRA_INSTALL_FLAGS} --upgrade boto3 botocore \
268
- " oss2>=2.14.0" " cryptography<43.0.0" " requests!=2.32.*,<3.0.0,>=2.24.0 "
261
+ " oss2>=2.14.0" " cryptography<43.0.0" " opensearch-py "
269
262
set +x
270
263
pip check
271
264
}
Original file line number Diff line number Diff line change 44
44
# The format of the dictionary is as follows:
45
45
# key: the regexp matching the file to be excluded,
46
46
# value: a dictionary containing package distributions with an optional version specifier, e.g., >=2.3.4
47
- ".*example_bedrock_retrieve_and_generate.py" : {"opensearch-py" : None },
48
- ".*example_opensearch.py" : {"opensearch-py" : None },
47
+ # yandexcloud is automatically removed in case botocore is upgraded to latest
49
48
r".*example_yandexcloud.*\.py" : {"yandexcloud" : None },
50
49
}
51
50
IGNORE_AIRFLOW_PROVIDER_DEPRECATION_WARNING : tuple [str , ...] = (
You can’t perform that action at this time.
0 commit comments