Skip to content

Bump PyPy runtime to v3.9 @ GHA #12557

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
tox_env: "py313"
use_coverage: true
- name: "ubuntu-pypy3"
python: "pypy-3.8"
python: "pypy-3.9"
os: ubuntu-latest
tox_env: "pypy3-xdist"

Expand Down
5 changes: 5 additions & 0 deletions changelog/11771.contrib.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
The PyPy runtime version has been updated to 3.9 from 3.8 that introduced
a flaky bug at the garbage collector which was not expected to fix there
as the V3.8 is EoL.

-- by :user:`x612skm`
1 change: 1 addition & 0 deletions changelog/12557.contrib.rst
4 changes: 2 additions & 2 deletions testing/test_skipping.py
Original file line number Diff line number Diff line change
Expand Up @@ -1140,8 +1140,8 @@
result = pytester.runpytest()
markline = " ^"
pypy_version_info = getattr(sys, "pypy_version_info", None)
if pypy_version_info is not None and pypy_version_info < (6,):
markline = markline[1:]
if pypy_version_info is not None:
markline = markline[7:]

Check warning on line 1144 in testing/test_skipping.py

View check run for this annotation

Codecov / codecov/patch

testing/test_skipping.py#L1144

Added line #L1144 was not covered by tests

if sys.version_info >= (3, 10):
expected = [
Expand Down
Loading