summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2021-02-13 15:44:43 -0600
committerGitHub <noreply@github.com>2021-02-13 16:44:43 -0500
commit4d77fb9d3edab81652210da81a5af7fe6aa79d60 (patch)
tree4eec221228b5e4ce79b60ef2a817476e730c0d59 /setup.py
parent4a3018e6ae3e04a250be9fd1c1a1ad115727f517 (diff)
downloadcryptography-3.4.5.tar.gz
3.4.5 backports and changelog/version bump (#5827)3.4.5
* Bump pyo3 and lower MSRV (#5823) * fix signature of EllipticCurvePublicKey.verify() (#5808) The signature change was introduced in https://github.com/pyca/cryptography/pull/5729 but is inconsistent with respect to related methods, breaks backward compatibility and compatibility with the OpenSSL backend (and maybe other backends) when named arguments are used. * Name: update get_attributes_for_oid return type (#5809) `List` gives more power to the caller. Note that `RelativeDistinguishedName`, the same function returns a `List`. Is there a reason this was `Iterable` only for `Name`? If we don't want to promise `List`, `Sequence` is another alternative. * Start typing a bunch of stuff from x509 extensions (#5812) * part 2 of typing x509 extensions (#5815) * 3.4.5 changelog and version bump * spelling * fix a false positive from the latest clippy (#5813) Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com> Co-authored-by: Markus Wamser <wamserma@users.noreply.github.com> Co-authored-by: Dan Halperin <dhalperi@users.noreply.github.com>
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 1a2269542..74f69e714 100644
--- a/setup.py
+++ b/setup.py
@@ -59,7 +59,7 @@ else:
if platform.python_implementation() == "PyPy"
else ["pyo3/abi3-py36"]
),
- rust_version=">=1.45.0",
+ rust_version=">=1.41.0",
)
]