Skip to content

Commit

Permalink
Release 0.10.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
konstin committed Feb 25, 2021
1 parent ba48e4c commit 027a0ff
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 179 deletions.
59 changes: 11 additions & 48 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["konstin <[email protected]>"]
name = "maturin"
version = "0.10.0-beta.1"
version = "0.10.0-beta.2"
description = "Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages"
exclude = ["test-crates/**/*", "sysconfig/*", "test-data/*", "ci/*", "tests/*"]
readme = "Readme.md"
Expand Down
128 changes: 0 additions & 128 deletions test-crates/lib_with_path_dep/Cargo.lock

This file was deleted.

4 changes: 2 additions & 2 deletions test-crates/lib_with_path_dep/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ set -ex
# which makes everything complex and slow
cd "$(git rev-parse --show-toplevel)" # Go to project root

pip uninstall -y lib_with_path_dep
pip uninstall -y lib_with_path_dep 2> /dev/null
# Make sure it's actually removed
python -c "from lib_with_path_dep import add; assert add(2,2)==4" && exit 1 || true
python -c "from lib_with_path_dep import add; assert add(2,2)==4" 2> /dev/null && exit 1 || true

# Build maturin wheel
cargo run -- build -b bin --strip
Expand Down

0 comments on commit 027a0ff

Please sign in to comment.