Skip to content

Commit a1c8717

Browse files
authored
Remove requests limits and restore opensearch tests for latest boto (#46289)
The requests limits were removing opensearch during "latest boto" tests but this is not needed any more, since apache.beam latest version already supports requests 2.32.*. That also unblocks moving opensearch to a separate provider project.
1 parent f7bb606 commit a1c8717

File tree

3 files changed

+3
-18
lines changed

3 files changed

+3
-18
lines changed

Dockerfile.ci

+1-8
Original file line numberDiff line numberDiff line change
@@ -935,17 +935,10 @@ function check_boto_upgrade() {
935935
# We need to include few dependencies to pass pip check with other dependencies:
936936
# * oss2 as dependency as otherwise jmespath will be bumped (sync with alibaba provider)
937937
# * 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".
945938
set -x
946939
# shellcheck disable=SC2086
947940
${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"
949942
set +x
950943
pip check
951944
}

scripts/docker/entrypoint_ci.sh

+1-8
Original file line numberDiff line numberDiff line change
@@ -255,17 +255,10 @@ function check_boto_upgrade() {
255255
# We need to include few dependencies to pass pip check with other dependencies:
256256
# * oss2 as dependency as otherwise jmespath will be bumped (sync with alibaba provider)
257257
# * 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".
265258
set -x
266259
# shellcheck disable=SC2086
267260
${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"
269262
set +x
270263
pip check
271264
}

tests/always/test_example_dags.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@
4444
# The format of the dictionary is as follows:
4545
# key: the regexp matching the file to be excluded,
4646
# 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
4948
r".*example_yandexcloud.*\.py": {"yandexcloud": None},
5049
}
5150
IGNORE_AIRFLOW_PROVIDER_DEPRECATION_WARNING: tuple[str, ...] = (

0 commit comments

Comments
 (0)