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.
setup.py
1 parent 3d9d09d commit 222e673Copy full SHA for 222e673
setup.py
@@ -39,11 +39,8 @@ def run(self):
39
rustc = get_rust_version()
40
nightly = rustc.prerelease is not None and "nightly" in rustc.prerelease
41
except DistutilsPlatformError:
42
- if sys.platform in ("linux", "darwin"):
43
- self.setup_temp_rustc_unix(toolchain="nightly", profile="minimal")
44
- nightly = True
45
- else:
46
- nightly = False
+ self.setup_temp_rustc_unix(toolchain="stable", profile="minimal")
+ nightly = False
47
48
if self.inplace:
49
self.extensions[0].strip = rust.Strip.No
0 commit comments