Skip to content

Commit 948dd03

Browse files
authored
Merge pull request #155 from scrapy/pypy311
Add support for PyPy3.11.
2 parents b478ce9 + efcc78f commit 948dd03

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/tests-ubuntu.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"]
10+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10", "pypy3.11"]
1111

1212
steps:
1313
- uses: actions/checkout@v4
1414

15+
- name: Install system libraries
16+
if: contains(matrix.python-version, 'pypy')
17+
run: |
18+
sudo apt-get update
19+
sudo apt-get install libxml2-dev libxslt-dev
20+
1521
- name: Set up Python ${{ matrix.python-version }}
1622
uses: actions/setup-python@v5
1723
with:

0 commit comments

Comments
 (0)