Skip to content

Commit 76ec5ac

Browse files
committed
remove redundant circuitpython_ in package names
1 parent 2045602 commit 76ec5ac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ It can be used with circup for easy installation:
1010

1111
```
1212
circup bundle-add jepler/circuitpython-fonts
13-
circup install circuitpython_font_mono_9_ascii
13+
circup install font_mono_9_ascii
1414
```
1515

1616
The font can be used like so:
1717
```
18-
from circuitpython_font_mono_9_ascii import FONT as MONO_9
18+
from font_mono_9_ascii import FONT as MONO_9
1919
from adafruit_display_text.bitmap_label import Label
2020
2121
# ...

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def build(src, dest, size, variant):
2323
)
2424
print(destdir)
2525

26-
package = f"circuitpython_font_{dest}_{size}{uvariant}"
26+
package = f"font_{dest}_{size}{uvariant}"
2727
packagedir = destdir / package
2828
packagedir.mkdir(parents=True)
2929
init_py = packagedir / "__init__.py"

0 commit comments

Comments
 (0)