Skip to content

Commit a7d5a8e

Browse files
authored
Merge pull request #12557 from x612skm/maintainence/11771-pypy-3.9-bump
2 parents d489247 + ced7072 commit a7d5a8e

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
tox_env: "py313"
151151
use_coverage: true
152152
- name: "ubuntu-pypy3"
153-
python: "pypy-3.8"
153+
python: "pypy-3.9"
154154
os: ubuntu-latest
155155
tox_env: "pypy3-xdist"
156156

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`

changelog/12557.contrib.rst

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

testing/test_skipping.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1140,8 +1140,8 @@ def test_func():
11401140
result = pytester.runpytest()
11411141
markline = " ^"
11421142
pypy_version_info = getattr(sys, "pypy_version_info", None)
1143-
if pypy_version_info is not None and pypy_version_info < (6,):
1144-
markline = markline[1:]
1143+
if pypy_version_info is not None:
1144+
markline = markline[7:]
11451145

11461146
if sys.version_info >= (3, 10):
11471147
expected = [

0 commit comments

Comments
 (0)