Skip to content

chore(deps): bump the pyo3 group with 5 updates#373

Merged
crepererum merged 1 commit intomainfrom
dependabot/cargo/pyo3-5589f7940a
Feb 17, 2026
Merged

chore(deps): bump the pyo3 group with 5 updates#373
crepererum merged 1 commit intomainfrom
dependabot/cargo/pyo3-5589f7940a

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 17, 2026

Bumps the pyo3 group with 5 updates:

Package From To
pyo3 0.28.0 0.28.1
pyo3-build-config 0.28.0 0.28.1
pyo3-ffi 0.28.0 0.28.1
pyo3-macros 0.28.0 0.28.1
pyo3-macros-backend 0.28.0 0.28.1

Updates pyo3 from 0.28.0 to 0.28.1

Release notes

Sourced from pyo3's releases.

PyO3 0.28.1

This patch contains a number of minor compile-time fixes for PyO3 0.28.0.

Thank you to the following contributors for the improvements:

@​davidhewitt @​funsafemath @​ngoldbaum @​rara64 @​tdyas

Changelog

Sourced from pyo3's changelog.

[0.28.1] - 2026-02-14

Fixed

  • Fix *args / **kwargs support in experimental-async feature (regressed in 0.28.0). #5771
  • Fix clippy::declare_interior_mutable_const warning inside #[pyclass] generated code on enums. #5772
  • Fix ambiguous_associated_items compilation error when deriving FromPyObject or using #[pyclass(from_py_object)] macro on enums with Error variant. #5784
  • Fix __qualname__ for complex #[pyclass] enum variants to include the enum name. #5796
Commits
  • 45f49ff release: 0.28.1
  • 56c34d6 Document Py_GIL_DISABLED in pyo3-build-config docs (#5810)
  • 92bc9ef Avoid unused variable warning with a debug Python build (#5811)
  • ca5df1a ci: re-enable list_get_item_unchecked benchmark on free-threaded build (#5812)
  • 413d9b5 Fix missing std::sync::atomic::Ordering import for targets without atomic64...
  • 1c764cd docs: improve messaging around #[pyclass(from_py_object)] change (#5798)
  • 927411a fix __qualname__ for complex enum variants (#5796)
  • 2334344 Fix ambiguous associated item error (#5784)
  • 3f5dba9 two before sections, one is after (#5775)
  • 2b15366 use inline const expression initializing enum singletons (#5772)
  • Additional commits viewable in compare view

Updates pyo3-build-config from 0.28.0 to 0.28.1

Release notes

Sourced from pyo3-build-config's releases.

PyO3 0.28.1

This patch contains a number of minor compile-time fixes for PyO3 0.28.0.

Thank you to the following contributors for the improvements:

@​davidhewitt @​funsafemath @​ngoldbaum @​rara64 @​tdyas

Changelog

Sourced from pyo3-build-config's changelog.

[0.28.1] - 2026-02-14

Fixed

  • Fix *args / **kwargs support in experimental-async feature (regressed in 0.28.0). #5771
  • Fix clippy::declare_interior_mutable_const warning inside #[pyclass] generated code on enums. #5772
  • Fix ambiguous_associated_items compilation error when deriving FromPyObject or using #[pyclass(from_py_object)] macro on enums with Error variant. #5784
  • Fix __qualname__ for complex #[pyclass] enum variants to include the enum name. #5796
Commits
  • 45f49ff release: 0.28.1
  • 56c34d6 Document Py_GIL_DISABLED in pyo3-build-config docs (#5810)
  • 92bc9ef Avoid unused variable warning with a debug Python build (#5811)
  • ca5df1a ci: re-enable list_get_item_unchecked benchmark on free-threaded build (#5812)
  • 413d9b5 Fix missing std::sync::atomic::Ordering import for targets without atomic64...
  • 1c764cd docs: improve messaging around #[pyclass(from_py_object)] change (#5798)
  • 927411a fix __qualname__ for complex enum variants (#5796)
  • 2334344 Fix ambiguous associated item error (#5784)
  • 3f5dba9 two before sections, one is after (#5775)
  • 2b15366 use inline const expression initializing enum singletons (#5772)
  • Additional commits viewable in compare view

Updates pyo3-ffi from 0.28.0 to 0.28.1

Release notes

Sourced from pyo3-ffi's releases.

PyO3 0.28.1

This patch contains a number of minor compile-time fixes for PyO3 0.28.0.

Thank you to the following contributors for the improvements:

@​davidhewitt @​funsafemath @​ngoldbaum @​rara64 @​tdyas

Changelog

Sourced from pyo3-ffi's changelog.

[0.28.1] - 2026-02-14

Fixed

  • Fix *args / **kwargs support in experimental-async feature (regressed in 0.28.0). #5771
  • Fix clippy::declare_interior_mutable_const warning inside #[pyclass] generated code on enums. #5772
  • Fix ambiguous_associated_items compilation error when deriving FromPyObject or using #[pyclass(from_py_object)] macro on enums with Error variant. #5784
  • Fix __qualname__ for complex #[pyclass] enum variants to include the enum name. #5796
Commits
  • 45f49ff release: 0.28.1
  • 56c34d6 Document Py_GIL_DISABLED in pyo3-build-config docs (#5810)
  • 92bc9ef Avoid unused variable warning with a debug Python build (#5811)
  • ca5df1a ci: re-enable list_get_item_unchecked benchmark on free-threaded build (#5812)
  • 413d9b5 Fix missing std::sync::atomic::Ordering import for targets without atomic64...
  • 1c764cd docs: improve messaging around #[pyclass(from_py_object)] change (#5798)
  • 927411a fix __qualname__ for complex enum variants (#5796)
  • 2334344 Fix ambiguous associated item error (#5784)
  • 3f5dba9 two before sections, one is after (#5775)
  • 2b15366 use inline const expression initializing enum singletons (#5772)
  • Additional commits viewable in compare view

Updates pyo3-macros from 0.28.0 to 0.28.1

Release notes

Sourced from pyo3-macros's releases.

PyO3 0.28.1

This patch contains a number of minor compile-time fixes for PyO3 0.28.0.

Thank you to the following contributors for the improvements:

@​davidhewitt @​funsafemath @​ngoldbaum @​rara64 @​tdyas

Changelog

Sourced from pyo3-macros's changelog.

[0.28.1] - 2026-02-14

Fixed

  • Fix *args / **kwargs support in experimental-async feature (regressed in 0.28.0). #5771
  • Fix clippy::declare_interior_mutable_const warning inside #[pyclass] generated code on enums. #5772
  • Fix ambiguous_associated_items compilation error when deriving FromPyObject or using #[pyclass(from_py_object)] macro on enums with Error variant. #5784
  • Fix __qualname__ for complex #[pyclass] enum variants to include the enum name. #5796
Commits
  • 45f49ff release: 0.28.1
  • 56c34d6 Document Py_GIL_DISABLED in pyo3-build-config docs (#5810)
  • 92bc9ef Avoid unused variable warning with a debug Python build (#5811)
  • ca5df1a ci: re-enable list_get_item_unchecked benchmark on free-threaded build (#5812)
  • 413d9b5 Fix missing std::sync::atomic::Ordering import for targets without atomic64...
  • 1c764cd docs: improve messaging around #[pyclass(from_py_object)] change (#5798)
  • 927411a fix __qualname__ for complex enum variants (#5796)
  • 2334344 Fix ambiguous associated item error (#5784)
  • 3f5dba9 two before sections, one is after (#5775)
  • 2b15366 use inline const expression initializing enum singletons (#5772)
  • Additional commits viewable in compare view

Updates pyo3-macros-backend from 0.28.0 to 0.28.1

Release notes

Sourced from pyo3-macros-backend's releases.

PyO3 0.28.1

This patch contains a number of minor compile-time fixes for PyO3 0.28.0.

Thank you to the following contributors for the improvements:

@​davidhewitt @​funsafemath @​ngoldbaum @​rara64 @​tdyas

Changelog

Sourced from pyo3-macros-backend's changelog.

[0.28.1] - 2026-02-14

Fixed

  • Fix *args / **kwargs support in experimental-async feature (regressed in 0.28.0). #5771
  • Fix clippy::declare_interior_mutable_const warning inside #[pyclass] generated code on enums. #5772
  • Fix ambiguous_associated_items compilation error when deriving FromPyObject or using #[pyclass(from_py_object)] macro on enums with Error variant. #5784
  • Fix __qualname__ for complex #[pyclass] enum variants to include the enum name. #5796
Commits
  • 45f49ff release: 0.28.1
  • 56c34d6 Document Py_GIL_DISABLED in pyo3-build-config docs (#5810)
  • 92bc9ef Avoid unused variable warning with a debug Python build (#5811)
  • ca5df1a ci: re-enable list_get_item_unchecked benchmark on free-threaded build (#5812)
  • 413d9b5 Fix missing std::sync::atomic::Ordering import for targets without atomic64...
  • 1c764cd docs: improve messaging around #[pyclass(from_py_object)] change (#5798)
  • 927411a fix __qualname__ for complex enum variants (#5796)
  • 2334344 Fix ambiguous associated item error (#5784)
  • 3f5dba9 two before sections, one is after (#5775)
  • 2b15366 use inline const expression initializing enum singletons (#5772)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the pyo3 group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [pyo3](https://github.com/pyo3/pyo3) | `0.28.0` | `0.28.1` |
| [pyo3-build-config](https://github.com/pyo3/pyo3) | `0.28.0` | `0.28.1` |
| [pyo3-ffi](https://github.com/pyo3/pyo3) | `0.28.0` | `0.28.1` |
| [pyo3-macros](https://github.com/pyo3/pyo3) | `0.28.0` | `0.28.1` |
| [pyo3-macros-backend](https://github.com/pyo3/pyo3) | `0.28.0` | `0.28.1` |


Updates `pyo3` from 0.28.0 to 0.28.1
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.28.0...v0.28.1)

Updates `pyo3-build-config` from 0.28.0 to 0.28.1
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.28.0...v0.28.1)

Updates `pyo3-ffi` from 0.28.0 to 0.28.1
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.28.0...v0.28.1)

Updates `pyo3-macros` from 0.28.0 to 0.28.1
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.28.0...v0.28.1)

Updates `pyo3-macros-backend` from 0.28.0 to 0.28.1
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.28.0...v0.28.1)

---
updated-dependencies:
- dependency-name: pyo3
  dependency-version: 0.28.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pyo3
- dependency-name: pyo3-build-config
  dependency-version: 0.28.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pyo3
- dependency-name: pyo3-ffi
  dependency-version: 0.28.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pyo3
- dependency-name: pyo3-macros
  dependency-version: 0.28.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pyo3
- dependency-name: pyo3-macros-backend
  dependency-version: 0.28.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pyo3
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Feb 17, 2026
@crepererum crepererum added this pull request to the merge queue Feb 17, 2026
Merged via the queue into main with commit 62bb29b Feb 17, 2026
2 checks passed
@crepererum crepererum deleted the dependabot/cargo/pyo3-5589f7940a branch February 17, 2026 10:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Comments