diff options
| -rw-r--r-- | .zuul.playbooks/playbooks/wheel/roles/build-wheel-manylinux/files/build-wheels.sh | 4 | ||||
| -rw-r--r-- | CHANGELOG.rst | 8 | ||||
| -rw-r--r-- | src/cryptography/__about__.py | 2 | ||||
| -rw-r--r-- | vectors/cryptography_vectors/__about__.py | 2 |
4 files changed, 12 insertions, 4 deletions
diff --git a/.zuul.playbooks/playbooks/wheel/roles/build-wheel-manylinux/files/build-wheels.sh b/.zuul.playbooks/playbooks/wheel/roles/build-wheel-manylinux/files/build-wheels.sh index b701c21fa..d28ff4e79 100644 --- a/.zuul.playbooks/playbooks/wheel/roles/build-wheel-manylinux/files/build-wheels.sh +++ b/.zuul.playbooks/playbooks/wheel/roles/build-wheel-manylinux/files/build-wheels.sh @@ -9,9 +9,9 @@ for P in ${PYTHONS}; do PYBIN=/opt/python/${P}/bin - "${PYBIN}"/python -m virtualenv .venv + "${PYBIN}"/python -m venv .venv - .venv/bin/pip install cffi six ipaddress "enum34; python_version < '3'" setuptools-rust + .venv/bin/pip install -U pip wheel cffi setuptools-rust REGEX="cp3([0-9])*" if [[ "${PYBIN}" =~ $REGEX ]]; then diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6732b35a1..fa2ee1500 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +.. _v3-4-7: + +3.4.7 - 2021-03-25 +~~~~~~~~~~~~~~~~~~ + +* Updated Windows, macOS, and ``manylinux`` wheels to be compiled with + OpenSSL 1.1.1k. + .. _v3-4-6: 3.4.6 - 2021-02-16 diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py index 06f69946f..095215591 100644 --- a/src/cryptography/__about__.py +++ b/src/cryptography/__about__.py @@ -21,7 +21,7 @@ __summary__ = ( ) __uri__ = "https://github.com/pyca/cryptography" -__version__ = "3.4.6" +__version__ = "3.4.7" __author__ = "The Python Cryptographic Authority and individual contributors" __email__ = "cryptography-dev@python.org" diff --git a/vectors/cryptography_vectors/__about__.py b/vectors/cryptography_vectors/__about__.py index eff8d8e21..a6dbd1e5f 100644 --- a/vectors/cryptography_vectors/__about__.py +++ b/vectors/cryptography_vectors/__about__.py @@ -18,7 +18,7 @@ __summary__ = "Test vectors for the cryptography package." __uri__ = "https://github.com/pyca/cryptography" -__version__ = "3.4.6" +__version__ = "3.4.7" __author__ = "The Python Cryptographic Authority and individual contributors" __email__ = "cryptography-dev@python.org" |
