Skip to content

Commit 7866d94

Browse files
committed
Drop Python 3.8
1 parent 79b83b4 commit 7866d94

File tree

6 files changed

+88
-32
lines changed

6 files changed

+88
-32
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ jobs:
210210
strategy:
211211
fail-fast: false
212212
matrix:
213-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
213+
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
214214
device:
215215
- 'trezor-1'
216216
- 'trezor-t'
@@ -281,7 +281,7 @@ jobs:
281281
strategy:
282282
fail-fast: false
283283
matrix:
284-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
284+
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
285285
device:
286286
- 'trezor-1'
287287
- 'trezor-t'

ci/cirrus.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Cache break (modify this line to break cirrus' dockerfile build cache) 1
22

3-
FROM python:3.8
3+
FROM python:3.9
44

55
ENV DEBIAN_FRONTEND=noninteractive
66
RUN apt-get update
@@ -10,7 +10,7 @@ RUN apt-get install -y \
1010
bsdmainutils \
1111
build-essential \
1212
ccache \
13-
clang \
13+
clang \
1414
cmake \
1515
curl \
1616
cython3 \

hwilib/devices/trezorlib/btc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
from decimal import Decimal
2020
from typing import TYPE_CHECKING, Any, AnyStr, Dict, List, Optional, Sequence, Tuple
2121

22-
# TypedDict is not available in typing for python < 3.8
2322
from typing_extensions import TypedDict
2423

2524
from . import exceptions, messages

0 commit comments

Comments
 (0)