File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,26 +9,26 @@ format:
99
1010init :
1111 [ -d venv ] || python -m venv venv
12- venv/ bin/ python -m pip install -r requirements.txt
12+ venv/ bin/ python -m pip install --requirement requirements.txt
1313
1414init-dev : && sync
1515 [ -d venv ] || python -m venv venv
16- venv/ bin/ python -m pip install -r requirements-dev.txt
16+ venv/ bin/ python -m pip install --requirement requirements-dev.txt
1717 venv/ bin/ pre-commit install
1818
1919install-circuitpython version = " 7.2.5":
2020 curl --location --output-dir / run/ media/ $(id --name --user)/ RPI-RP2 --remote-name https:// downloads.circuitpython.org/ bin/ adafruit_qtpy_rp2040 / en_US/ adafruit-circuitpython-adafruit_qtpy_rp2040 -en_US-{{ version }} .uf2
2121
2222install :
23- venv/ bin/ pipkin -m / run/ media/ $(id --name --user)/ CIRCUITPY install --compile -r requirements-circuitpython.txt
23+ venv/ bin/ pipkin --mount / run/ media/ $(id --name --user)/ CIRCUITPY install --compile --requirement requirements-circuitpython.txt
2424 cp code.py / run/ media/ $(id --name --user)/ CIRCUITPY
2525 udisksctl unmount --block-device $(findmnt --noheadings --output SOURCE --target / run/ media/ $(id --name --user)/ CIRCUITPY)
2626
2727alias l := lint
2828
2929lint :
3030 venv/ bin/ yamllint .
31- venv/ bin/ ruff check .
31+ venv/ bin/ ruff check --fix .
3232
3333sync :
3434 venv/ bin/ pip-sync requirements-dev.txt requirements.txt
You can’t perform that action at this time.
0 commit comments