Skip to content

Commit 0cec1d9

Browse files
webknjazpatchback[bot]
authored andcommitted
Merge pull request #12557 from x612skm/maintainence/11771-pypy-3.9-bump
(cherry picked from commit a7d5a8e)
1 parent 18ca7c2 commit 0cec1d9

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

Diff for: .github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
tox_env: "py313"
146146
use_coverage: true
147147
- name: "ubuntu-pypy3"
148-
python: "pypy-3.8"
148+
python: "pypy-3.9"
149149
os: ubuntu-latest
150150
tox_env: "pypy3-xdist"
151151

Diff for: changelog/11771.contrib.rst

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
The PyPy runtime version has been updated to 3.9 from 3.8 that introduced
2+
a flaky bug at the garbage collector which was not expected to fix there
3+
as the V3.8 is EoL.
4+
5+
-- by :user:`x612skm`

Diff for: changelog/12557.contrib.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
11771.contrib.rst

Diff for: testing/test_skipping.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1145,8 +1145,8 @@ def test_func():
11451145
result = pytester.runpytest()
11461146
markline = " ^"
11471147
pypy_version_info = getattr(sys, "pypy_version_info", None)
1148-
if pypy_version_info is not None and pypy_version_info < (6,):
1149-
markline = markline[1:]
1148+
if pypy_version_info is not None:
1149+
markline = markline[7:]
11501150

11511151
if sys.version_info >= (3, 10):
11521152
expected = [

0 commit comments

Comments
 (0)