File tree Expand file tree Collapse file tree 5 files changed +8
-2
lines changed Expand file tree Collapse file tree 5 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 88target
99.pytest_cache
1010* .egg-info
11+ setuptools_rust /version.py
1112pyo3
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[build-system ]
2- requires = [" setuptools>=41 " , " wheel" , " setuptools_scm[toml]>=3.4.3" ]
2+ requires = [" setuptools>=42 " , " wheel" , " setuptools_scm[toml]>=3.4.3" ]
33build-backend = " setuptools.build_meta"
44
55[tool .setuptools_scm ]
6+ write_to = " setuptools_rust/version.py"
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 77from .test import test_rust
88from .tomlgen import tomlgen_rust , find_rust_extensions
99from .utils import Binding , Strip
10+ from .version import version as __version__
11+
1012
1113__all__ = (
1214 "RustExtension" ,
You can’t perform that action at this time.
0 commit comments