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
(cherry picked from commit a7d5a8e)
  • Loading branch information
webknjaz authored and patchback[bot] committed Jul 19, 2024
1 parent 18ca7c2 commit 0cec1d9
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 @@ -145,7 +145,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 @@ -1145,8 +1145,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:]

Check warning on line 1149 in testing/test_skipping.py

View check run for this annotation

Codecov / codecov/patch

testing/test_skipping.py#L1149

Added line #L1149 was not covered by tests

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

0 comments on commit 0cec1d9

Please sign in to comment.