[3.4] Specify an MSRV in setup.py (#5789) (#5790)

* Specify an MSRV in setup.py (#5789)

* Changelog
This commit is contained in:
Alex Gaynor 2021-02-08 20:14:08 -05:00 committed by GitHub
parent 74a3df42c4
commit 0f40cb3acb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -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

View file

@ -59,6 +59,7 @@ else:
if platform.python_implementation() == "PyPy"
else ["pyo3/abi3-py36"]
),
rust_version=">=1.45.0",
)
]