From 21a040b8b4d0aebf5135861a5ebaad2c73bd4ca7 Mon Sep 17 00:00:00 2001 From: kngwyu Date: Sun, 11 Aug 2019 15:01:22 +0900 Subject: [PATCH] Change Minimum nightly to 2019-07-19 --- .travis.yml | 2 +- README.md | 2 +- build.rs | 2 +- ci/travis/setup.sh | 2 +- guide/src/get_started.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 636893f8..37ab85b8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,7 @@ matrix: - name: Minimum nightly python: "3.7" # Keep this synced up with build.rs - env: TRAVIS_RUST_VERSION=nightly-2019-07-12 + env: TRAVIS_RUST_VERSION=nightly-2019-07-19 # Tested via anaconda PyPy (since travis's PyPy version is too old) - name: PyPy3.5 7.0 python: "3.7" diff --git a/README.md b/README.md index c6b35fdf..fc40d327 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ A comparison with rust-cpython can be found [in the guide](https://pyo3.rs/maste ## Usage -PyO3 supports Python 3.5 and up. The minimum required Rust version is 1.37.0-nightly 2019-07-12. +PyO3 supports Python 3.5 and up. The minimum required Rust version is 1.37.0-nightly 2019-07-19. PyPy is also supported (via cpyext) for Python 3.5 only, targeted PyPy version is 7.0.0. Please refer to the guide for installation instruction against PyPy. diff --git a/build.rs b/build.rs index 0f31913c..376973ec 100644 --- a/build.rs +++ b/build.rs @@ -16,7 +16,7 @@ use version_check::{Channel, Date, Version}; /// 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-07-11"; +const MIN_DATE: &'static str = "2019-07-18"; const MIN_VERSION: &'static str = "1.37.0-nightly"; /// Information returned from python interpreter diff --git a/ci/travis/setup.sh b/ci/travis/setup.sh index 96c9d82d..095adfcf 100755 --- a/ci/travis/setup.sh +++ b/ci/travis/setup.sh @@ -51,4 +51,4 @@ if [ ! -f "$HOME/.cargo/bin/kcov" ]; then make install src/kcov $HOME/.cargo/bin/kcov cd $TRAVIS_BUILD_DIR -fi \ No newline at end of file +fi diff --git a/guide/src/get_started.md b/guide/src/get_started.md index a7a7652e..883c8905 100644 --- a/guide/src/get_started.md +++ b/guide/src/get_started.md @@ -10,7 +10,7 @@ A comparison with rust-cpython can be found [in the guide](https://pyo3.rs/maste ## Usage -PyO3 supports Python 3.5 and up. The minimum required Rust version is 1.37.0-nightly 2019-07-12. +PyO3 supports Python 3.5 and up. The minimum required Rust version is 1.37.0-nightly 2019-07-19. PyPy is also supported (via cpyext) for Python 3.5 only, targeted PyPy version is 7.0.0. Please refer to the guide for installation instruction against PyPy.