File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,17 @@ jobs:
12
12
- uses : actions/checkout@v2
13
13
- uses : actions/setup-python@v2
14
14
with :
15
- python-version : " 3.9 "
15
+ python-version : " 3.10 "
16
16
- uses : actions/cache@v2
17
17
with :
18
18
path : ~/.cache/pip
19
19
key : ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
20
20
- name : Install dependencies
21
21
run : |
22
22
python -m pip install --upgrade pip setuptools six wheel
23
+ # sudo apt-get install libxml2 libxslt
24
+ sudo snap install libxml2 libxslt
25
+ python -m pip install matplotlib>=3.4.2
23
26
python -m pip install mypy pytest-cov -r requirements.txt
24
27
- run : mypy --install-types --non-interactive .
25
28
- name : Run tests
Original file line number Diff line number Diff line change 8
8
steps :
9
9
- uses : actions/checkout@v1 # v1, NOT v2
10
10
- uses : actions/setup-python@v2
11
+ with :
12
+ python-version : " 3.10"
11
13
- name : Write DIRECTORY.md
12
14
run : |
13
15
scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md
You can’t perform that action at this time.
0 commit comments