From 4673df279482d51cf4ac3a97df604ca3d54d6e11 Mon Sep 17 00:00:00 2001 From: Michael Graeb Date: Sun, 15 Aug 2021 21:14:01 -0700 Subject: [PATCH 1/2] Fix CA override functions Update to awscrt 0.12.0. This fixes the issue where "override_default_trust_store" functions did not actually override the system trust store on Linux and Apple platforms. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 01e6a869..b4bd8705 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ def _load_version(): "Operating System :: OS Independent", ], install_requires=[ - 'awscrt==0.11.25', + 'awscrt==0.12.0', ], python_requires='>=3.6', ) From 83db7f4e59136815d23cea4fdede81516e2a2edf Mon Sep 17 00:00:00 2001 From: Michael Graeb Date: Sun, 15 Aug 2021 21:32:16 -0700 Subject: [PATCH 2/2] kick CI