Merge pull request #82 from clach04/patch-1

Add version attributes issue #79
pull/87/head
Peter Hinch 2025-01-08 10:02:00 +00:00 zatwierdzone przez GitHub
commit 71da31c6b4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -15,6 +15,9 @@ import framebuf
import gc
import sys
version_info = (1, 0, 0) # pep-440-like version number using semantic version number
__version__ = '.'.join(map(str, version_info))
if sys.implementation.version < (1, 20, 0):
raise OSError("Firmware V1.20 or later required.")