Skip to content

Commit

Permalink
Merge pull request #12557 from x612skm/maintainence/11771-pypy-3.9-bump
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Jul 19, 2024
2 parents d489247 + ced7072 commit a7d5a8e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
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

0 comments on commit a7d5a8e

Please sign in to comment.