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 dffe1c1 commit f60de17Copy full SHA for f60de17
.github/workflows/main.yml
@@ -20,7 +20,7 @@ jobs:
20
strategy:
21
matrix:
22
# Requires Python3 w/ Type Annotations
23
- python-version: [3.9, 3.x]
+ python-version: [3.9, 3.10, 3.11, 3.x]
24
25
steps:
26
- uses: actions/checkout@v2
@@ -30,6 +30,7 @@ jobs:
30
python-version: ${{ matrix.python-version }}
31
- name: Install dependencies
32
run: |
33
+ python3 -m pip install --upgrade pip
34
python3 -m pip install -r requirements.txt
35
python3 -m pip install -r requirements-serial.txt
36
python3 -m pip install -r requirements-gui.txt
slip39/version.py
@@ -1,2 +1,2 @@
1
-__version_info__ = ( 10, 0, 0 )
+__version_info__ = ( 10, 0, 1 )
2
__version__ = '.'.join( map( str, __version_info__ ))
0 commit comments