Skip to content

Commit fd43f17

Browse files
committed
Add support for Python 3.10
1 parent d3030e0 commit fd43f17

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: [ubuntu-latest, macos-latest]
23-
python-version: [3.6, 3.7, 3.8, 3.9]
23+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
2424
runs-on: ${{ matrix.os }}
2525
steps:
2626
- uses: actions/checkout@v2
@@ -29,6 +29,6 @@ jobs:
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131
- name: install riot
32-
run: pip install riot==0.8.0
32+
run: pip install riot==0.9.0
3333
- run: |
3434
riot run -p ${{ matrix.python-version}} test

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@
55
# Ignore files generated during `python setup.py install`
66
build/
77
dist/
8-
sketches-py.egg-info/
9-
sketches.egg-info/
8+
*.egg-info/
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
features:
3+
- |
4+
Add support for Python 3.10.

riotfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Venv(
99
name="test",
1010
command="pytest {cmdargs}",
11-
pys=["2.7", "3.6", "3.7", "3.8", "3.9"],
11+
pys=["2.7", "3.6", "3.7", "3.8", "3.9", "3.10"],
1212
pkgs={
1313
"pytest": latest,
1414
"numpy": latest,

0 commit comments

Comments
 (0)