Skip to content

Commit

Permalink
Bump version, add build to pip
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelJanas committed Nov 13, 2023
1 parent 08be18a commit ab71895
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel twine
python -m pip install --upgrade pip setuptools wheel twine build
- name: Extract version
id: get_version
Expand Down
2 changes: 1 addition & 1 deletion fortepyan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from fortepyan.midi.structures import MidiFile, MidiPiece

__all__ = ["view", "MidiFile", "MidiPiece"]
__version__ = "0.2.5"
__version__ = "0.2.6"

# Pretty MIDI will throw an unwanted error for large files with high PPQ
# This is a workaround
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "fortepyan"
version = "0.2.5"
version = "0.2.6"
description = "Process MIDI piano with (almost) no pain"
readme = "README.md"
authors = [{ name = "Piano For AI", email = "[email protected]" }]
Expand Down Expand Up @@ -47,7 +47,7 @@ packages = [
]

[tool.bumpver]
current_version = "0.2.5"
current_version = "0.2.6"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = false
Expand Down

0 comments on commit ab71895

Please sign in to comment.