Skip to content

Commit a2788b0

Browse files
committed
hashbrown: support 0.9 or 0.11
1 parent 01ad9d8 commit a2788b0

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@ jobs:
9090
run: |
9191
echo "::set-output name=all_additive_features::macros num-bigint num-complex hashbrown serde multiple-pymethods"
9292
93+
- if: matrix.msrv == 'MSRV'
94+
name: Prepare minimal package versions (MSRV only)
95+
run: cargo update -p hashbrown --precise 0.9.1
96+
9397
- name: Build docs
9498
run: cargo doc --no-default-features --features "${{ steps.settings.outputs.all_additive_features }}"
9599

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99
### Packaging
1010
- Update `num-bigint` optional dependency to 0.4. [#1481](https://github.com/PyO3/pyo3/pull/1481)
1111
- Update `num-complex` optional dependency to 0.4. [#1482](https://github.com/PyO3/pyo3/pull/1482)
12+
- Extend `hashbrown` optional dependency supported versions to include 0.11. [#1496](https://github.com/PyO3/pyo3/pull/1496)
1213

1314
### Added
1415
- Add conversions between `OsStr`/`OsString`/`Path`/`PathBuf` and Python strings. [#1379](https://github.com/PyO3/pyo3/pull/1379)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ num-complex = { version = "0.4", optional = true }
2727
paste = { version = "0.1.18", optional = true }
2828
pyo3-macros = { path = "pyo3-macros", version = "=0.13.2", optional = true }
2929
unindent = { version = "0.1.4", optional = true }
30-
hashbrown = { version = "0.11", optional = true }
30+
hashbrown = { version = ">= 0.9, < 0.12", optional = true }
3131
serde = {version = "1.0", optional = true}
3232

3333
[dev-dependencies]

0 commit comments

Comments
 (0)