From be6d7b24081607cb55535ecf1b363841558bb9e8 Mon Sep 17 00:00:00 2001 From: konstin Date: Mon, 5 Nov 2018 00:29:24 +0100 Subject: [PATCH] Fix #258 --- build.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.rs b/build.rs index 9ffb76422b9..daf766e1d23 100644 --- a/build.rs +++ b/build.rs @@ -10,9 +10,9 @@ use std::process::Stdio; use version_check::{is_min_date, is_min_version, supports_features}; // Specifies the minimum nightly version needed to compile pyo3. -// This requirements is due to the stabilization of use_extern_macros -const MIN_DATE: &'static str = "2018-08-18"; -const MIN_VERSION: &'static str = "1.30.0-nightly"; +// This requirement is due to https://github.com/rust-lang/rust/issues/55380 +const MIN_DATE: &'static str = "2018-11-02"; +const MIN_VERSION: &'static str = "1.32.0-nightly"; #[derive(Debug)] struct PythonVersion {