Skip to content

Commit d2a1288

Browse files
authored
Modify Python version and add cryptography install
Updated Python version in CI workflow from 3.15 to 3.14 and added pip install for cryptography for PyPy v3.11.
1 parent a7571de commit d2a1288

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ jobs:
6464
python-version: ${{ matrix.python-version }}
6565
cache: 'pip'
6666
cache-dependency-path: 'requirements-dev.txt'
67+
- run: pip install cryptography # TODO(cclauss): Fix requirements for PyPy v3.11
68+
if: matrix.python-version == 'pypy-3.11'
6769
- run: pip install . -r requirements-dev.txt
6870
- run: make test
6971

@@ -73,7 +75,7 @@ jobs:
7375
strategy:
7476
matrix:
7577
os: [ubuntu-latest]
76-
python-version: ['3.15']
78+
python-version: ['3.14']
7779
steps:
7880
- uses: actions/checkout@v5
7981
- name: Setup Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)