We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba809f3 commit 0e495a0Copy full SHA for 0e495a0
.github/workflows/tests.yml
@@ -8,7 +8,7 @@ jobs:
8
strategy:
9
max-parallel: 5
10
matrix:
11
- python-version: [3.7, 3.8, 3.9]
+ python-version: [3.7, 3.8, 3.9, pypy-3.7-nightly]
12
13
steps:
14
@@ -22,11 +22,15 @@ jobs:
22
with:
23
python-version: ${{ matrix.python-version }}
24
25
- - name: Install dependencies
+ - if: startsWith(matrix.python-version, "pypy") != true
26
+ name: Install HPy (only for CPython)
27
run: |
28
git clone -b release/0.0.3 --single-branch https://github.com/hpyproject/hpy
29
cd hpy
30
pip install .
31
+
32
+ - name: Install dependencies
33
+ run: |
34
pip install numpy cython pytest transonic pythran
35
36
- name: Checkout
0 commit comments