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 957cbb8 commit 3bbfacfCopy full SHA for 3bbfacf
.github/workflows/test.yml
@@ -33,9 +33,13 @@ jobs:
33
cache: 'pip'
34
cache-dependency-path: 'setup.cfg'
35
36
+ - name: Install dependencies for PyPy
37
+ if: startsWith(matrix.python-version, 'pypy')
38
+ run: |
39
+ sudo apt-get install libxml2-dev libxslt-dev
40
+
41
- name: Install dependencies
42
run: |
- sudo apt-get install libxml2-dev libxslt-dev # Only needed for PyPy.
43
python -m pip install --upgrade pip
44
python -m pip install --editable=.[test,develop]
45
0 commit comments