Skip to content

Commit

Permalink
Downgrade nightly for now to workaround pyo3 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
msanders committed Oct 29, 2019
1 parent a6ea362 commit 3fc590c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ First, see if a binary wheel is available for your machine by running:

If that fails, install [rustup](https://rustup.rs) and then run:

$ rustup default nightly
$ rustup default nightly-2019-10-05
$ pip install -U setuptools-rust
$ pip install -U autopy

Another option is to compile from the latest source on the GitHub repository:

$ git clone git://github.com/autopilot-rs/autopy-rs.git
$ cd autopy
$ rustup default nightly
$ rustup default nightly-2019-10-05
$ pip install -r requirements.txt
$ python setup.py build
# python setup.py install
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ environment:
# From https://github.com/starkat99/appveyor-rust/blob/master/appveyor.yml
install:
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init -yv --default-toolchain nightly --default-host %target%
- rustup-init -yv --default-toolchain nightly-2019-10-05 --default-host %target%
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
- rustc -vV
- cargo -vV
Expand Down
2 changes: 1 addition & 1 deletion scripts/travis
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if [ ! -d ~/rust-installer ]; then
set -x
mkdir ~/rust-installer
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o ~/rust-installer/rustup.sh
sh ~/rust-installer/rustup.sh --default-toolchain=nightly -y
sh ~/rust-installer/rustup.sh --default-toolchain=nightly-2019-10-05 -y
set +x
fi

Expand Down

0 comments on commit 3fc590c

Please sign in to comment.