Skip to content

Commit 39833bb

Browse files
committed
WIP: Do not merge -- Test on Python 3.10 beta 1
https://www.python.org/download/pre-releases/
1 parent 90db983 commit 39833bb

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,17 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-python@v2
1414
with:
15-
python-version: "3.9"
15+
python-version: "3.10"
1616
- uses: actions/cache@v2
1717
with:
1818
path: ~/.cache/pip
1919
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
2020
- name: Install dependencies
2121
run: |
2222
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
2326
python -m pip install mypy pytest-cov -r requirements.txt
2427
- run: mypy --install-types --non-interactive .
2528
- name: Run tests

.github/workflows/directory_writer.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
steps:
99
- uses: actions/checkout@v1 # v1, NOT v2
1010
- uses: actions/setup-python@v2
11+
with:
12+
python-version: "3.10"
1113
- name: Write DIRECTORY.md
1214
run: |
1315
scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md

0 commit comments

Comments
 (0)