v0.5.0-alpha.2
This commit is contained in:
parent
13302ea1ca
commit
3b63cc9178
|
@ -11,6 +11,7 @@ dist/
|
|||
.tox/
|
||||
.mypy_cache/
|
||||
.hypothesis/
|
||||
.eggs/
|
||||
|
||||
*.so
|
||||
*.out
|
||||
|
|
|
@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
* Added an explanation that the GIL can temporarily be released even while holding a GILGuard.
|
||||
* Lots of clippy errors
|
||||
* Fix segfault on calling an unknown method on a PyObject
|
||||
* Work around a [bug](https://github.com/rust-lang/rust/issues/55380) in the rust compiler by kngwyu [#252](https://github.com/PyO3/pyo3/pull/252)
|
||||
|
||||
### Removed
|
||||
|
||||
|
|
14
Cargo.toml
14
Cargo.toml
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pyo3"
|
||||
version = "0.5.0-alpha.1"
|
||||
version = "0.5.0-alpha.2"
|
||||
description = "Bindings to Python interpreter"
|
||||
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
||||
readme = "README.md"
|
||||
|
@ -22,18 +22,18 @@ codecov = { repository = "PyO3/pyo3", branch = "master", service = "github" }
|
|||
[dependencies]
|
||||
libc = "0.2.43"
|
||||
spin = "0.4.9"
|
||||
num-traits = "0.2.5"
|
||||
pyo3cls = { path = "pyo3cls", version = "=0.5.0-alpha.1" }
|
||||
mashup = "0.1.7"
|
||||
num-complex = { version = "0.2", optional = true}
|
||||
num-traits = "0.2.6"
|
||||
pyo3cls = { path = "pyo3cls", version = "=0.5.0-alpha.2" }
|
||||
mashup = "0.1.9"
|
||||
num-complex = { version = "0.2.1", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
assert_approx_eq = "1.0"
|
||||
assert_approx_eq = "1.0.0"
|
||||
docmatic = "0.1.2"
|
||||
|
||||
[build-dependencies]
|
||||
regex = "1.0.5"
|
||||
version_check = "0.1.4"
|
||||
version_check = "0.1.5"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
# PyO3
|
||||
|
||||
**Note: Pyo3 doesn't compile on 1.31.0 nightly due to https://github.com/rust-lang/rust/issues/55380**
|
||||
|
||||
[![Build Status](https://travis-ci.org/PyO3/pyo3.svg?branch=master)](https://travis-ci.org/PyO3/pyo3)
|
||||
[![Build Status](https://ci.appveyor.com/api/projects/status/github/PyO3/pyo3?branch=master&svg=true)](https://ci.appveyor.com/project/fafhrd91/pyo3)
|
||||
[![crates.io](http://meritbadge.herokuapp.com/pyo3)](https://crates.io/crates/pyo3)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pyo3-derive-backend"
|
||||
version = "0.5.0-alpha.1"
|
||||
version = "0.5.0-alpha.2"
|
||||
description = "Code generation for PyO3 package"
|
||||
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
||||
keywords = ["pyo3", "python", "cpython", "ffi"]
|
||||
|
@ -10,6 +10,6 @@ categories = ["api-bindings", "development-tools::ffi"]
|
|||
license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
quote = "0.6.8"
|
||||
proc-macro2 = "0.4.19"
|
||||
syn = { version = "0.15.4", features = ["full", "extra-traits"] }
|
||||
quote = "0.6.9"
|
||||
proc-macro2 = "0.4.20"
|
||||
syn = { version = "0.15.15", features = ["full", "extra-traits"] }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pyo3cls"
|
||||
version = "0.5.0-alpha.1"
|
||||
version = "0.5.0-alpha.2"
|
||||
description = "Proc macros for PyO3 package"
|
||||
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
||||
keywords = ["pyo3", "python", "cpython", "ffi"]
|
||||
|
@ -13,7 +13,7 @@ license = "Apache-2.0"
|
|||
proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
quote= "0.6.8"
|
||||
proc-macro2 = "0.4.19"
|
||||
syn = { version = "0.15.4", features = ["full", "extra-traits"] }
|
||||
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.5.0-alpha.1" }
|
||||
quote= "0.6.9"
|
||||
proc-macro2 = "0.4.20"
|
||||
syn = { version = "0.15.15", features = ["full", "extra-traits"] }
|
||||
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.5.0-alpha.2" }
|
||||
|
|
Loading…
Reference in New Issue