File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 33## Unreleased
44
55 - Respect ` CARGO_BUILD_TARGET ` environment variable if set. [ #90 ] ( https://github.com/PyO3/setuptools-rust/pull/90 )
6+ - Add ` setuptools_rust.__version__ ` and require setuptools >= 46.1. [ #91 ] ( https://github.com/PyO3/setuptools-rust/issues/91 )
67
78## 0.11.5 (2020-11-10)
89
Original file line number Diff line number Diff line change 11[metadata]
22name = setuptools-rust
3+ version = attr: setuptools_rust.__version__
34author = Nikolay Kim
45author_email = fafhrd91@gmail.com
56license = MIT
@@ -27,7 +28,7 @@ classifiers =
2728packages = setuptools_rust
2829zip_safe = True
2930install_requires = semantic_version>=2.6.0; toml>=0.9.0
30- setup_requires = setuptools>=41 ; wheel; setuptools_scm[toml]>=3.4.3
31+ setup_requires = setuptools>=46.1 ; wheel; setuptools_scm[toml]>=3.4.3
3132
3233[options.entry_points]
3334distutils.commands =
Original file line number Diff line number Diff line change 88from .tomlgen import tomlgen_rust , find_rust_extensions
99from .utils import Binding , Strip
1010
11+ __version__ = "0.11.6.dev1"
12+
1113__all__ = (
1214 "RustExtension" ,
1315 "Binding" ,
You can’t perform that action at this time.
0 commit comments