v0.5.0-alpha.2

This commit is contained in:
konstin 2018-10-29 17:36:06 +01:00
parent 13302ea1ca
commit 3b63cc9178
6 changed files with 18 additions and 18 deletions

1
.gitignore vendored
View File

@ -11,6 +11,7 @@ dist/
.tox/ .tox/
.mypy_cache/ .mypy_cache/
.hypothesis/ .hypothesis/
.eggs/
*.so *.so
*.out *.out

View File

@ -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. * Added an explanation that the GIL can temporarily be released even while holding a GILGuard.
* Lots of clippy errors * Lots of clippy errors
* Fix segfault on calling an unknown method on a PyObject * 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 ### Removed

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pyo3" name = "pyo3"
version = "0.5.0-alpha.1" version = "0.5.0-alpha.2"
description = "Bindings to Python interpreter" description = "Bindings to Python interpreter"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"] authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
readme = "README.md" readme = "README.md"
@ -22,18 +22,18 @@ codecov = { repository = "PyO3/pyo3", branch = "master", service = "github" }
[dependencies] [dependencies]
libc = "0.2.43" libc = "0.2.43"
spin = "0.4.9" spin = "0.4.9"
num-traits = "0.2.5" num-traits = "0.2.6"
pyo3cls = { path = "pyo3cls", version = "=0.5.0-alpha.1" } pyo3cls = { path = "pyo3cls", version = "=0.5.0-alpha.2" }
mashup = "0.1.7" mashup = "0.1.9"
num-complex = { version = "0.2", optional = true} num-complex = { version = "0.2.1", optional = true }
[dev-dependencies] [dev-dependencies]
assert_approx_eq = "1.0" assert_approx_eq = "1.0.0"
docmatic = "0.1.2" docmatic = "0.1.2"
[build-dependencies] [build-dependencies]
regex = "1.0.5" regex = "1.0.5"
version_check = "0.1.4" version_check = "0.1.5"
[features] [features]
default = [] default = []

View File

@ -1,7 +1,5 @@
# PyO3 # 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://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) [![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) [![crates.io](http://meritbadge.herokuapp.com/pyo3)](https://crates.io/crates/pyo3)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pyo3-derive-backend" name = "pyo3-derive-backend"
version = "0.5.0-alpha.1" version = "0.5.0-alpha.2"
description = "Code generation for PyO3 package" description = "Code generation for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"] authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"] keywords = ["pyo3", "python", "cpython", "ffi"]
@ -10,6 +10,6 @@ categories = ["api-bindings", "development-tools::ffi"]
license = "Apache-2.0" license = "Apache-2.0"
[dependencies] [dependencies]
quote = "0.6.8" quote = "0.6.9"
proc-macro2 = "0.4.19" proc-macro2 = "0.4.20"
syn = { version = "0.15.4", features = ["full", "extra-traits"] } syn = { version = "0.15.15", features = ["full", "extra-traits"] }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pyo3cls" name = "pyo3cls"
version = "0.5.0-alpha.1" version = "0.5.0-alpha.2"
description = "Proc macros for PyO3 package" description = "Proc macros for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"] authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"] keywords = ["pyo3", "python", "cpython", "ffi"]
@ -13,7 +13,7 @@ license = "Apache-2.0"
proc-macro = true proc-macro = true
[dependencies] [dependencies]
quote= "0.6.8" quote= "0.6.9"
proc-macro2 = "0.4.19" proc-macro2 = "0.4.20"
syn = { version = "0.15.4", features = ["full", "extra-traits"] } syn = { version = "0.15.15", features = ["full", "extra-traits"] }
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.5.0-alpha.1" } pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.5.0-alpha.2" }