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
4 changes: 2 additions & 2 deletions PUBLISHING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Publishing and releases

How changes in this repo become versioned **`pydevices-palettes`** wheels on [TestPyPI](https://test.pypi.org/project/pydevices-palettes/) and MIP packages on [micropython-lib gh-pages](https://PyDevices.github.io/micropython-lib/mip/PyDevices).
How changes in this repo become versioned **`palettes`** wheels on [TestPyPI](https://test.pypi.org/project/palettes/) and MIP packages on [micropython-lib gh-pages](https://PyDevices.github.io/micropython-lib/mip/PyDevices).

## Pipeline

Expand Down Expand Up @@ -33,7 +33,7 @@ Format: **`0.0.x`** semver until promoted. TestPyPI rejects duplicate versions.
## Install from TestPyPI

```bash
pip install -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ pydevices-palettes
pip install -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ palettes
```

## MIP install
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ mip.install("palettes", index="https://PyDevices.github.io/micropython-lib/mip/P
pip install \
-i https://test.pypi.org/simple/ \
--extra-index-url https://pypi.org/simple/ \
pydevices-palettes
palettes
```

## Quick start
Expand Down
2 changes: 1 addition & 1 deletion WORKFLOWS_SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ PATs that push workflow YAML need the **`workflow`** scope.
| # | Task | Status |
|---|------|--------|
| 1 | Push workflow YAML to `.github/workflows/` | Done |
| 2 | Publish v0.0.1 → micropython-lib + TestPyPI + MIP | **Pending** (tag push) |
| 2 | Publish v0.0.3 → micropython-lib + TestPyPI + MIP | **Pending** (tag push) |
| 3 | Read the Docs → `palettes.readthedocs.io` | **Pending** (admin) |
| 4 | Enable GitHub Pages (`gh-pages` branch) | **Pending** (admin) |

Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add to the example header:

```python
# pyscript mip: palettes
# pyodide wheels: pydevices-palettes
# pyodide wheels: palettes
```

The pydisplay gallery generator adds these when examples import `palettes`.
2 changes: 1 addition & 1 deletion scripts/publish_micropython_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ DESCRIPTION_PREFIX="palettes"
AUTHOR="Brad Barnett <contact@pydevices.com>"
LICENSE="MIT"
BASENAME=palettes
PYPI_NAME=pydevices-palettes
PYPI_NAME=palettes
DEST_REPO="${MICROPYTHON_LIB_DIR:-$SOURCE_REPO/../micropython-lib}"
DEST_REPO="$(cd "$DEST_REPO" 2>/dev/null && pwd || echo "$DEST_REPO")"
export MICROPYTHON_LIB_DIR="$DEST_REPO"
Expand Down
Loading