mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
* Specify an MSRV in setup.py (#5789) * Changelog
This commit is contained in:
parent
74a3df42c4
commit
0f40cb3acb
2 changed files with 9 additions and 0 deletions
|
|
@ -1,6 +1,14 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
.. _v3-4-3:
|
||||
|
||||
3.4.3 - 2021-02-08
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
||||
* Specify our supported Rust version (>=1.45.0) in our ``setup.py`` so users
|
||||
on older versions will get a clear error message.
|
||||
|
||||
.. _v3-4-2:
|
||||
|
||||
3.4.2 - 2021-02-08
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -59,6 +59,7 @@ else:
|
|||
if platform.python_implementation() == "PyPy"
|
||||
else ["pyo3/abi3-py36"]
|
||||
),
|
||||
rust_version=">=1.45.0",
|
||||
)
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue