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 3
3
## Unreleased
4
4
5
5
- 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 )
6
7
7
8
## 0.11.5 (2020-11-10)
8
9
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = setuptools-rust
3
+ version = attr: setuptools_rust.__version__
3
4
author = Nikolay Kim
4
5
5
6
license = MIT
@@ -27,7 +28,7 @@ classifiers =
27
28
packages = setuptools_rust
28
29
zip_safe = True
29
30
install_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
31
32
32
33
[options.entry_points]
33
34
distutils.commands =
Original file line number Diff line number Diff line change 8
8
from .tomlgen import tomlgen_rust , find_rust_extensions
9
9
from .utils import Binding , Strip
10
10
11
+ __version__ = "0.11.6.dev1"
12
+
11
13
__all__ = (
12
14
"RustExtension" ,
13
15
"Binding" ,
You can’t perform that action at this time.
0 commit comments