Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Cross-platform widget toolkit for [pydisplay](https://github.com/PyDevices/pydis
pip install \
-i https://test.pypi.org/simple/ \
--extra-index-url https://pypi.org/simple/ \
pdwidgets displaysys graphics-py eventsys multimer palettes
pdwidgets displaysys pydisplay-graphics eventsys multimer palettes
```

Requires a pydisplay `board_config` and display stack.
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Wheels are published to [TestPyPI](https://test.pypi.org/project/pdwidgets/) for
pip install \
-i https://test.pypi.org/simple/ \
--extra-index-url https://pypi.org/simple/ \
pdwidgets displaysys graphics-py eventsys multimer palettes
pdwidgets displaysys pydisplay-graphics eventsys multimer palettes
```

You also need a pydisplay `board_config` for your display backend. See [pydisplay desktop quick start](https://pydisplay.readthedocs.io/en/latest/guides/desktop-cpython/).
Expand Down
4 changes: 2 additions & 2 deletions scripts/assets_icons_to_py.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Convert ``lib/pdwidgets/icons/*.{pbm,bmp}`` into importable ``.py`` modules.

Installs ``graphics-py`` from TestPyPI (unless already importable), or
Installs ``pydisplay-graphics`` from TestPyPI (unless already importable), or
uses sibling ``pydisplay/src/lib`` when present. Loads each binary via
``FrameBuffer.from_file``, then writes modules via ``FrameBuffer.export``
(``BITMAP = bytearray(...)`` for zero-copy MicroPython loads).
Expand Down Expand Up @@ -57,7 +57,7 @@ def ensure_graphics(*, install: bool) -> None:
"https://test.pypi.org/simple/",
"--extra-index-url",
"https://pypi.org/simple/",
"graphics-py",
"pydisplay-graphics",
]
print("Running:", " ".join(cmd))
subprocess.check_call(cmd)
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish_micropython_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ metadata(
pypi_publish="$BASENAME",
)
require("eventsys")
require("graphics", pypi="graphics-py")
require("graphics", pypi="pydisplay-graphics")
require("multimer")
require("palettes")
package("$BASENAME")
Expand Down
Loading