Skip to content

Commit 79c0587

Browse files
authored
Use circuitpython 9.2.5 for v4 board stubs (#201)
1 parent c03e6ed commit 79c0587

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

main.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@
1111
import gc
1212
import time
1313

14-
import board
1514
import digitalio
1615
import microcontroller
1716

17+
try:
18+
from board_definitions import proveskit_rp2040_v4 as board
19+
except ImportError:
20+
import board
21+
1822
import lib.pysquared.functions as functions
1923
import lib.pysquared.nvm.register as register
2024
import lib.pysquared.pysquared as pysquared

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ readme = "README.md"
66
requires-python = ">=3.13"
77
dependencies = [
88
"adafruit-circuitpython-typing==1.11.2",
9-
"circuitpython-stubs==9.2.4",
9+
"circuitpython-stubs==9.2.5",
1010
"coverage==7.6.10",
1111
"pre-commit==4.0.1",
1212
"pytest==8.3.2",

uv.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)