diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 79aa85a57..f867ea7b6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,8 +8,8 @@ Change Log 8.14.2 ====== -* Corrected requests version on pyproject.toml to not be pinned (^2.27.0); but doing that (which causes the requests - package to be 2.32.3) results in this error on test/test_ecr_utils.py::test_ecr_utils_workflow: +* Corrected requests version (to ^2.27.0 from 2.31.0) on pyproject.toml to not be pinned; but doing + so (which resolves to 2.32.3) results in this error on test/test_ecr_utils.py::test_ecr_utils_workflow: docker.errors.DockerException: Error while fetching server API version: Not supported URL scheme http+docker But upgrading the docker package (from ^4.4.4) version to ^7.1.0 fixes that. diff --git a/pyproject.toml b/pyproject.toml index b56bfb28f..d3791ef12 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,8 +61,6 @@ pytz = ">=2020.4" redis = "^4.5.1" pyperclip = "^1.8.2" PyYAML = "^6.0.1" -# N.B. 2024-06-30: Updating (via poetry update) from requests 2.31.0 (2023-05-22) -# to 2.32.3 (2024-05-29) causes utils GA/CI to fail (on test_ecr_utils_workflow) for some reason. requests = "^2.27.1" rfc3986 = "^1.4.0" shortuuid = "^1.0.13"