From 70a8dd272ba63a44cc4e0e1e8199c08b95612cbb Mon Sep 17 00:00:00 2001 From: Myke Cuthbert Date: Mon, 31 Aug 2020 20:59:51 -0400 Subject: [PATCH] Music21 v6.1 last push --- dist/dist.py | 5 +++-- music21/common/misc.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/dist/dist.py b/dist/dist.py index 8afccc52f9..4cdbd2103f 100644 --- a/dist/dist.py +++ b/dist/dist.py @@ -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. diff --git a/music21/common/misc.py b/music21/common/misc.py index 8337a1ee63..07f3a68259 100644 --- a/music21/common/misc.py +++ b/music21/common/misc.py @@ -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)