Skip to content

Commit 2b986d1

Browse files
committed
Fix CI
1 parent 19471a7 commit 2b986d1

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
restore-keys: |
2525
${{ runner.os }}-pip-
2626
- name: Install apt deps
27-
run: sudo apt-get update && sudo apt-get install -qq -y libenchant-dev libxml2-dev libxslt1-dev
27+
run: sudo apt-get update && sudo apt-get install -qq -y libxml2-dev libxslt1-dev
2828
- name: Install dependencies
2929
run: pip install -Ur requirements-dev.txt
3030
- name: Test with mypy

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
restore-keys: |
2525
${{ runner.os }}-pip-
2626
- name: Install apt deps
27-
run: sudo apt-get update && sudo apt-get install -qq -y libenchant-dev libxml2-dev libxslt1-dev
27+
run: sudo apt-get update && sudo apt-get install -qq -y libxml2-dev libxslt1-dev
2828
- name: Install dependencies
2929
run: pip install -Ur requirements-dev.txt
3030
- name: Run pylint

.github/workflows/pythonapp.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
python-ver:
18-
- '3.6'
1918
- '3.7'
2019
- '3.8'
2120
- '3.9'
@@ -35,7 +34,7 @@ jobs:
3534
restore-keys: |
3635
${{ runner.os }}-${{ matrix.python-ver }}-pip-
3736
- name: Install apt deps
38-
run: sudo apt-get update && sudo apt-get install -qq -y libenchant-dev libxml2-dev libxslt1-dev
37+
run: sudo apt-get update && sudo apt-get install -qq -y libxml2-dev libxslt1-dev
3938
- name: Install dependencies
4039
run: pip install -Ur requirements-dev.txt
4140
- name: Test with pytest

0 commit comments

Comments
 (0)