From 08757f47eb67401057ebdd3be16a72ac8e986f57 Mon Sep 17 00:00:00 2001 From: Dan Meliza Date: Sun, 29 Sep 2024 15:00:49 -0400 Subject: [PATCH] add pypy tests --- .github/workflows/tests-python.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests-python.yml b/.github/workflows/tests-python.yml index 1ffc9ea..235522e 100644 --- a/.github/workflows/tests-python.yml +++ b/.github/workflows/tests-python.yml @@ -9,10 +9,14 @@ jobs: matrix: os: [macos-13, macos-14, ubuntu-latest, windows-latest] # can't do pypy - no support for h5py - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.7", "pypy3.8", "pypy3.9", "pypy3.10"] exclude: - os: macos-14 python-version: "3.7" + - os: macos-14 + python-version: "pypy3.7" + - os: windows-latest + python-version: "pypy3.7" runs-on: ${{ matrix.os }} steps: