diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f9ee1eb..2438f33 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,6 +21,9 @@ jobs: python-version: "3.12" cache: pip cache-dependency-path: pyproject.toml + - name: Install dependencies + run: | + pip install setuptools wheel build - name: Build run: | python -m build diff --git a/pyproject.toml b/pyproject.toml index dd405dc..5fcc48f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ requires-python = ">=3.8" authors = [{ name = "Sven Hollowell" }] license = { text = "MIT" } dependencies = ["music21"] -version = "0.1.3" +version = "0.1.4" [project.urls] Homepage = "https://github.com/supersational/showscore" diff --git a/showscore/__init__.py b/showscore/__init__.py index a5173cf..ed05fdd 100644 --- a/showscore/__init__.py +++ b/showscore/__init__.py @@ -3,7 +3,7 @@ from .html_renderer import makeHTML, musicXMLToScript, showXML, backend from .show import show -__version__ = "0.1.3" +__version__ = "0.1.4" __author__ = "Sven Hollowell" __license__ = "MIT" __url__ = "https://github.com/supersational/showscore"