Skip to content

Commit f60de17

Browse files
committed
Work toward getting Github Actions testing working again
1 parent dffe1c1 commit f60de17

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
# Requires Python3 w/ Type Annotations
23-
python-version: [3.9, 3.x]
23+
python-version: [3.9, 3.10, 3.11, 3.x]
2424

2525
steps:
2626
- uses: actions/checkout@v2
@@ -30,6 +30,7 @@ jobs:
3030
python-version: ${{ matrix.python-version }}
3131
- name: Install dependencies
3232
run: |
33+
python3 -m pip install --upgrade pip
3334
python3 -m pip install -r requirements.txt
3435
python3 -m pip install -r requirements-serial.txt
3536
python3 -m pip install -r requirements-gui.txt

slip39/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = ( 10, 0, 0 )
1+
__version_info__ = ( 10, 0, 1 )
22
__version__ = '.'.join( map( str, __version_info__ ))

0 commit comments

Comments
 (0)