Skip to content

Commit

Permalink
Update wheels to upstream 2.16.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Synss committed Apr 16, 2020
1 parent 071892f commit 3084a28
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -8,7 +8,7 @@ RUN yum -y update \
&& yum -yq install cmake \
&& yum clean all
COPY ./scripts/ ./scripts/
RUN ./scripts/download-mbedtls.sh 2.16.5 /usr/local/src \
RUN ./scripts/download-mbedtls.sh 2.16.6 /usr/local/src \
&& ./scripts/install-mbedtls.sh /usr/local/src /usr/local \
&& cp /usr/local/src/LICENSE LICENSE.mbedtls \
&& rm -r /usr/local/src
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -87,8 +87,8 @@ The *mbedtls.version* module shows the run-time version
information to mbed TLS.

>>> from mbedtls import version
>>> _ = version.version # "mbed TLS 2.16.5"
>>> _ = version.version_info # (2, 16, 5)
>>> _ = version.version # "mbed TLS 2.16.6"
>>> _ = version.version_info # (2, 16, 6)


Message digest
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, Extension, find_packages

version = "1.2.0"
mbedtls_version = "2.16.5"
mbedtls_version = "2.16.6"
download_url = "https://github.com/Synss/python-mbedtls/tarball/%s" % version

__mbedtls_version_info__ = tuple(map(int, mbedtls_version.split(".")))
Expand Down

0 comments on commit 3084a28

Please sign in to comment.