diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2021-03-25 13:19:31 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-25 07:19:31 -1000 |
| commit | a19014a087759f3df72b2cd70ed7a0d8a6481340 (patch) | |
| tree | 6e29d57766d11890d9614feb1b197425207be491 | |
| parent | 75b002ae7fb1f263fdd4983d0c23493878e127fe (diff) | |
| download | cryptography-3.4.7.tar.gz | |
Prep for 3.4.7 release (#5933)3.4.7
* Prep for 3.4.7 release
* don't use virtualenv in zuul wheel building either (#5860)
* don't use virtualenv in zuul wheel building either
* we need wheel and not these other things
* newer pip, also don't need six
Co-authored-by: Paul Kehrer <paul.l.kehrer@gmail.com>
| -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" |
