Skip to content

Commit 130bc8c

Browse files
jontsaiclaude
andcommitted
Remove PyPy 3.10 from test matrix
PyPy 3.10 tests are failing because the nh3 package (dependency of readme-renderer/twine) requires PyPy 3.11+ due to PyO3 minimum version requirements. Error: 'the configured PyPy interpreter version (3.10) is lower than PyO3's minimum supported version (3.11)' Removed pypy310 from: - tox.ini envlist (line 17) - tox.ini basepython configuration (line 25) This will make CI checks more reliable by removing tests that cannot pass with current dependency requirements. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent d32a3ba commit 130bc8c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@ envlist =
1414
clean,
1515
check,
1616
docs,
17-
{py39,py310,py311,py312,pypy39,pypy310}-{pydantic28,pydantic210}-{cover,nocov},
17+
{py39,py310,py311,py312,pypy39}-{pydantic28,pydantic210}-{cover,nocov},
1818
report
1919
ignore_basepython_conflict = true
2020

2121
[testenv]
2222
basepython =
2323
pypy38: {env:TOXPYTHON:pypy3.8}
2424
pypy39: {env:TOXPYTHON:pypy3.9}
25-
pypy310: {env:TOXPYTHON:pypy3.10}
2625
py38: {env:TOXPYTHON:python3.8}
2726
py39: {env:TOXPYTHON:python3.9}
2827
py310: {env:TOXPYTHON:python3.10}

0 commit comments

Comments
 (0)