Skip to content

Commit

Permalink
Merge pull request #105 from obeezzy/fix-examples-deployment
Browse files Browse the repository at this point in the history
Fix examples deployment
  • Loading branch information
obeezzy committed Apr 27, 2022
2 parents 4a631ee + 1e4a3cf commit 010c329
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ print('Watch text scroll across the Launchpad\'s surface.\n'

lp.grid.render(Text(' Hello, world!').scroll()) # Scroll text indefinitely
```
See more examples [here](https://github.com/obeezzy/lpminimk3/tree/main/examples).
See more examples [here](https://github.com/obeezzy/lpminimk3/tree/main/lpminimk3/examples).

### In shell
Start by finding a connected device and opening the device for reading and writing:
Expand Down Expand Up @@ -140,6 +140,8 @@ Scroll `Hello, world!` on Launchpad's surface once:


## Release History
* [0.4.5](https://github.com/obeezzy/lpminimk3/releases/tag/v0.4.5)
* Correct issue with examples deployment
* [0.4.4](https://github.com/obeezzy/lpminimk3/releases/tag/v0.4.4)
* Add initial support for Mac
* Add hex and RGB support
Expand Down
2 changes: 1 addition & 1 deletion lpminimk3/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (0, 4, 4)
VERSION = (0, 4, 5)

__version__ = '.'.join(map(str, VERSION))
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# This call to setup() does all the work
setup(
name="lpminimk3",
version="0.4.4",
version="0.4.5",
description="Python API for the Novation Launchpad Mini MK3",
long_description=README,
long_description_content_type="text/markdown",
Expand All @@ -25,5 +25,5 @@
],
packages=find_packages(exclude=("tests",)),
include_package_data=True,
install_requires=["python-rtmidi"],
install_requires=["python-rtmidi", "jsonschema"],
)

0 comments on commit 010c329

Please sign in to comment.