From 4a652faf1724301ded23c5b171615c15e41ab98a Mon Sep 17 00:00:00 2001 From: Noah Beard Date: Fri, 15 Jul 2022 16:16:07 -0400 Subject: [PATCH 1/2] Update to use latest CRT --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ce7fff0d..b91a320c 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ def _load_version(): "Operating System :: OS Independent", ], install_requires=[ - 'awscrt==0.13.13', + 'awscrt==0.13.14', ], python_requires='>=3.6', ) From bbbe01d13d6fafaa0743b92137be6763ccff524f Mon Sep 17 00:00:00 2001 From: Noah Beard Date: Wed, 20 Jul 2022 09:22:34 -0400 Subject: [PATCH 2/2] Fix CI documentation check --- docsrc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsrc/conf.py b/docsrc/conf.py index 02400360..92cb8bfe 100644 --- a/docsrc/conf.py +++ b/docsrc/conf.py @@ -47,7 +47,7 @@ # For cross-linking to types from other libraries intersphinx_mapping = { 'python': ('https://docs.python.org/3', None), - 'awscrt': ('https://awslabs.github.io/aws-crt-python', None), + 'awscrt': ('https://awslabs.github.io/aws-crt-python/api', None), } # -- Options for HTML output -------------------------------------------------