Skip to content

Commit

Permalink
Music21 v6.1 last push
Browse files Browse the repository at this point in the history
  • Loading branch information
Myke Cuthbert committed Sep 1, 2020
1 parent 1981b55 commit 70a8dd2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions dist/dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,10 @@
then don't change anything until the next step is done.
(.gitignore will avoid uploading the large files created here...)
14. Create a new release on GitHub and upload the TWO files created here. Use tag v6.0.1 (etc.).
14. Create a new release on GitHub and upload the TWO files created here and docs.
Use tag v6.0.1 (etc.).
Don't forget the "v" in the release tag.
Drag in this order: .tar.gz, no-corpus.tar.gz
Drag in this order: .tar.gz, documentation, no-corpus.tar.gz
Finish this before doing the next step, even though it looks like it could be done in parallel.
Expand Down
2 changes: 1 addition & 1 deletion music21/common/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def macOSVersion() -> Tuple[int, int, int]: # pragma: no cover
if getPlatform() != 'darwin':
return (0, 0, 0)

major, minor, maintenance, *_rest = tuple(int(v) for v in platform.mac_ver()[0].split('.'))
major, minor, maintenance = tuple(int(v) for v in platform.mac_ver()[0].split('.'))
return (major, minor, maintenance)


Expand Down

0 comments on commit 70a8dd2

Please sign in to comment.