From 073781177fa4f3d4c3632302e90351ba4414d7cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Thu, 25 Sep 2025 10:00:34 +0300 Subject: [PATCH] test(tox): bump PyPy to 3.11 Cryptography's latest version is not available as a binary wheel for 3.10, and setting up a Rust build env seems somewhat excessive for this. --- .github/workflows/main.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4d16bef..2d01db5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,7 +28,7 @@ jobs: - py311 - py312 - py313 - - pypy3 + - pypy311 permissions: contents: read steps: diff --git a/tox.ini b/tox.ini index e1b8a3c..6368648 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py39, py310, py311, py312, py313, pypy3 +envlist = py39, py310, py311, py312, py313, pypy311 skip_missing_interpreters = True [testenv]