We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cb0214 commit 8a715c0Copy full SHA for 8a715c0
CHANGES.rst
@@ -6,6 +6,8 @@ CHANGES
6
7
- Generate console-script for Binding.Exec #22
8
9
+- Do not run `cargo check` for `sdist` command #18
10
+
11
- Remove extra python3 file extension for executables.
12
13
setuptools_rust/check.py
@@ -28,6 +28,9 @@ def finalize_options(self):
28
if isinstance(ext, RustExtension)]
29
30
def run(self):
31
+ if 'sdist' in self.distribution.commands:
32
+ return
33
34
if not self.extensions:
35
return
36
0 commit comments