Merge pull request #1482 from PyO3/dependabot/cargo/num-complex-0.4
build(deps): update num-complex requirement from 0.3 to 0.4
This commit is contained in:
commit
fe75b2da59
|
@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
## [Unreleased]
|
||||
### Packaging
|
||||
- Update `num-bigint` optional dependency to 0.4. [#1481](https://github.com/PyO3/pyo3/pull/1481)
|
||||
- Update `num-complex` optional dependency to 0.4. [#1482](https://github.com/PyO3/pyo3/pull/1482)
|
||||
|
||||
### Added
|
||||
- Add conversions between `OsStr`/`OsString`/`Path`/`PathBuf` and Python strings. [#1379](https://github.com/PyO3/pyo3/pull/1379)
|
||||
|
|
|
@ -22,7 +22,7 @@ inventory = { version = "0.1.4", optional = true }
|
|||
libc = "0.2.62"
|
||||
parking_lot = "0.11.0"
|
||||
num-bigint = { version = "0.4", optional = true }
|
||||
num-complex = { version = "0.3", optional = true }
|
||||
num-complex = { version = "0.4", optional = true }
|
||||
# must stay at 0.1.x for Rust 1.41 compatibility
|
||||
paste = { version = "0.1.18", optional = true }
|
||||
pyo3-macros = { path = "pyo3-macros", version = "=0.13.2", optional = true }
|
||||
|
|
Loading…
Reference in New Issue