Skip to content

Commit

Permalink
Fix #258
Browse files Browse the repository at this point in the history
  • Loading branch information
konstin committed Nov 4, 2018
1 parent 52dfc00 commit be6d7b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit be6d7b2

Please sign in to comment.