Travis hit a build error after #174 was merged into master. This error wasn't seen before in the feature branch, but appeared during the deploy step in master.
ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'OpenSSL 1.0.2g 1 Mar 2016'. See: https://github.com/urllib3/urllib3/issues/2168
It looks like we need to pin urllib3 to < 2.0. This change pins it to v1.26.16 as it's the latest version available that's < v2.0.
Travis hit a build error after #174 was merged into master. This error wasn't seen before in the feature branch, but appeared during the deploy step in master.
ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'OpenSSL 1.0.2g 1 Mar 2016'. See: https://github.com/urllib3/urllib3/issues/2168
It looks like we need to pin
urllib3
to < 2.0. This change pins it to v1.26.16 as it's the latest version available that's < v2.0.requests
andboto3
(by way ofbotocore
)also needed to be bumped because they had incompatibleurllib3
version requirements.urllib3
v2.0.3 was being install via twine