-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add rtmidi install option * replace Makefile with Taskfile * switch to YAML-based notation * add lint stage to ci * support merge_voices * fix notation tests * store voice_time info in .time attribute in last_message * refactor * fix last bar wrong notes https://gitlab.tandav.me/tandav/notes/-/issues/5930 * support continuing voices from previous bar https://gitlab.tandav.me/tandav/notes/-/issues/5896 * fix pre-commit * Fix notation player cli https://gitlab.tandav.me/tandav/notes/-/issues/5931 * add RootTranspose event https://gitlab.tandav.me/tandav/notes/-/issues/5929 * gitlab parallel using needs
- Loading branch information
Showing
38 changed files
with
1,134 additions
and
341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
version: '3' | ||
|
||
tasks: | ||
test: | ||
desc: Run tests | ||
cmds: | ||
- pytest | ||
|
||
bumpver: | ||
desc: 'Bump version. Pass --<part>. Usage example: task bumpver -- --minor' | ||
cmds: | ||
- bumpver update --no-fetch {{.CLI_ARGS}} | ||
|
||
bumpver-dev-start: | ||
desc: 'Bump version to start new dev cycle. Pass --<part>. Usage example: task bumpver-dev-start -- --minor' | ||
cmds: | ||
- bumpver update --no-fetch --tag dev --no-commit --no-tag-commit {{.CLI_ARGS}} | ||
|
||
bumpver-dev-stop: | ||
desc: 'Bump version to stop dev cycle. --<part> is not passed. Usage example: task bumpver-dev-stop' | ||
cmds: | ||
- bumpver update --no-fetch --tag final --no-commit --no-tag-commit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.