Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 27, 2025

Bumps pyo3 from 0.27.0 to 0.27.1.

Release notes

Sourced from pyo3's releases.

PyO3 0.27.1

This release fixes a clippy lint regression in PyO3 0.27.0, and exposes the PySendResult type (the return value from Bound<PyIterator>::send).

Thank you to the following contributors for the improvements:

@​alex @​davidhewitt @​reaperhulk @​tpoliaw

Changelog

Sourced from pyo3's changelog.

[0.27.1] - 2025-10-21

Fixed

  • Fix clippy:declare_interior_mutable_const warning from #[pyfunction]. #5538
  • Expose pyo3::types::PySendResult in public API. #5539
Commits

Dependabot compatibility score

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [pyo3](https://github.com/pyo3/pyo3) from 0.27.0 to 0.27.1.
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/v0.27.1/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.27.0...v0.27.1)

---
updated-dependencies:
- dependency-name: pyo3
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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 Oct 27, 2025
@messense messense merged commit 8f7bf64 into main Oct 30, 2025
18 checks passed
@messense messense deleted the dependabot/cargo/pyo3-0.27.1 branch October 30, 2025 07:34
jontsai added a commit to AltimateAI/datapilot-cli that referenced this pull request Dec 18, 2025
## Summary

Remove PyPy 3.10 from the test matrix to fix failing CI checks.

## Problem

All 4 PyPy 3.10 jobs are failing on every build with:

```
error: the configured PyPy interpreter version (3.10) is lower than
PyO3's minimum supported version (3.11)
```

## Root Cause Analysis

This failure is caused by an **upstream dependency change**, not by any code change in this repository.

**The dependency chain:**
```
tox.ini → readme-renderer → nh3 → PyO3
```

1. Our `tox.ini` uses [`readme-renderer`](https://github.com/pypa/readme_renderer) for package metadata validation
2. `readme-renderer` requires [`nh3 >= 0.2.14`](https://github.com/pypa/readme_renderer/blob/main/pyproject.toml)
3. `nh3` has [no pre-built PyPy wheels](https://pypi.org/project/nh3/#files), so PyPy must build from source
4. Building from source compiles PyO3, which dropped PyPy 3.10 support in v0.27.0

**Timeline:**
| Date | Event |
|------|-------|
| Oct 21, 2025 | `nh3` updated PyO3 to 0.27.0 ([PR #102](messense/nh3#102)) |
| Oct 29, 2025 | [Last passing CI](https://github.com/AltimateAI/datapilot-cli/actions/runs/18909887249) on main |
| Oct 30, 2025 | `nh3` updated PyO3 to 0.27.1 ([PR #103](messense/nh3#103)) |
| Oct 30, 2025 | [First failing CI](https://github.com/AltimateAI/datapilot-cli/actions/runs/18955832290) on main |

**Upstream decisions:**
- [PyO3 v0.27.0](https://github.com/PyO3/pyo3/releases/tag/v0.27.0): *"Support for PyPy 3.9 and PyPy 3.10 (both no longer supported upstream) has been dropped."*
- [PyPy v7.3.19](https://doc.pypy.org/en/latest/release-v7.3.19.html): *"In the next release we will drop 3.10 and remove the 'beta' label."*
- [PyPy downloads](https://www.pypy.org/download.html) now only list PyPy 3.11 and 2.7 as current releases

## Solution

Remove PyPy 3.10 from both:
- ✅ `tox.ini` - envlist and basepython definitions
- ✅ `.github/workflows/github-actions.yml` - all 4 pypy310 jobs

## Removed Jobs

- `pypy310-pydantic28-cover`
- `pypy310-pydantic210-cover`
- `pypy310-pydantic28-nocov`
- `pypy310-pydantic210-nocov`

## Impact

- ✅ Fixes all failing CI builds
- ✅ PyPy 3.9 jobs continue to work and remain in the matrix
- ✅ All CPython versions (3.10, 3.11, 3.12) unaffected
- ✅ Aligns with upstream PyPy and PyO3 deprecation decisions

## Testing

CI will run on this PR to verify the fix works.
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.

2 participants