Skip to content
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 @@ def test_func():
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:]

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