File tree Expand file tree Collapse file tree 4 files changed +4
-73
lines changed Expand file tree Collapse file tree 4 files changed +4
-73
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Unreleased
4
+ ### Removed
5
+ - Remove ` test_rust ` command. (` python setup.py test ` is deprecated.) [ #129 ] ( https://github.com/PyO3/setuptools-rust/pull/129 )
6
+
3
7
## 0.12.1 (2021-03-11)
4
8
### Fixed
5
9
- Fix some files unexpectedly missing from ` sdist ` command output. [ #125 ] ( https://github.com/PyO3/setuptools-rust/pull/125 )
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ distutils.commands =
35
35
check_rust =setuptools_rust.check:check_rust
36
36
clean_rust =setuptools_rust:clean_rust
37
37
build_rust =setuptools_rust:build_rust
38
- test_rust =setuptools_rust:test_rust
39
38
tomlgen_rust =setuptools_rust:tomlgen_rust
40
39
distutils.setup_keywords =
41
40
rust_extensions =setuptools_rust.setuptools_ext:rust_extensions
Original file line number Diff line number Diff line change 2
2
from .check import check_rust
3
3
from .clean import clean_rust
4
4
from .extension import Binding , RustExtension , Strip
5
- from .test import test_rust
6
5
from .tomlgen import tomlgen_rust , find_rust_extensions
7
6
from .version import version as __version__
8
7
15
14
"check_rust" ,
16
15
"clean_rust" ,
17
16
"find_rust_extensions" ,
18
- "test_rust" ,
19
17
"tomlgen_rust" ,
20
18
)
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments