Update MIN_DATE/VERSION in build.rs

This commit is contained in:
kngwyu 2019-07-09 18:53:51 +09:00
parent 27f6abddba
commit 9f827f024c
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ use version_check::{is_min_date, is_min_version, supports_features};
/// Specifies the minimum nightly version needed to compile pyo3.
/// Keep this synced up with the travis ci config,
/// But note that this is the rustc version which can be lower than the nightly version
const MIN_DATE: &'static str = "2019-02-06";
const MIN_VERSION: &'static str = "1.34.0-nightly";
const MIN_DATE: &'static str = "2019-06-21";
const MIN_VERSION: &'static str = "1.37.0-nightly";
/// Information returned from python interpreter
#[derive(Deserialize, Debug)]