Skip to content

Commit

Permalink
Update dependencies to compile more easily (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
lecormi authored Sep 8, 2020
1 parent 1efdc5e commit 0ebaf9c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "autopy"
version = "0.4.0"

[dependencies.pyo3]
version = "0.6.0"
version = "0.8.1"
default-features = false

[dependencies.image]
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: build
build: ## Build debug target for development.
rustup default nightly-2019-10-05
rustup default nightly
pip install -r requirements.txt
python setup.py build

Expand All @@ -14,7 +14,7 @@ help: ## Print help information.

.PHONY: install
install: ## Install local target.
pip install .
pip3install .

.PHONY: mac
mac: ## Build wheel distributions for macOS.
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-2019-10-05 --default-host %target%
- rustup-init -yv --default-toolchain nightly --default-host %target%
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
- rustc -vV
- cargo -vV
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// https://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

#![feature(specialization, const_fn, custom_attribute)]
#![feature(specialization, const_fn)]

extern crate autopilot;
extern crate either;
Expand Down

0 comments on commit 0ebaf9c

Please sign in to comment.