Skip to content

Commit 7f1b584

Browse files
committed
pull from main repo
1 parent 82361ba commit 7f1b584

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.gitignore

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,5 @@ venv
1111
**/*.mpy
1212

1313
# libs
14-
lib/rv3028*
15-
lib/adafruit*
16-
lib/asyncio*
17-
lib/neopixel.py
18-
lib/pysquared/
14+
/lib/*
15+
!/lib/requirements.txt

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ download-libraries: .venv ## Download the required libraries
2323
@if [ -n "$(LOCAL_PYSQUARED)" ]; then \
2424
$(UV) pip install $(LOCAL_PYSQUARED) --target lib --no-deps --upgrade --quiet; \
2525
else \
26-
$(UV) pip install git+https://github.com/hrfarmer/pysquared --target lib --no-deps --upgrade --quiet; \
26+
$(UV) pip install git+https://github.com/proveskit/pysquared --target lib --no-deps --upgrade --quiet; \
2727
fi
2828

2929
@rm -rf lib/*.dist-info

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ omit = [
4141
"lib/asyncio_*/**",
4242
"lib/rv3028*/**",
4343
"lib/neopixel.py",
44+
"lib/pysquared/**"
4445
]
4546

4647
[tool.coverage.html]

0 commit comments

Comments
 (0)