Skip to content

Commit d5753ac

Browse files
Ease up on music21 dependency: v8.1 is fine.
1 parent a145679 commit d5753ac

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The Humdrum portion of this software is derived/translated from the C++ code in
66
The core of the MEI portion of this software was based on the MEI converter in [music21](https://github.com/cuthbertlab/music21), by Michael Scott Asato Cuthbert.
77

88
## Setup
9-
Depends on [music21](https://pypi.org/project/music21), which should also be configured (instructions [here](https://web.mit.edu/music21/doc/usersGuide/usersGuide_01_installing.html)) to display a musical score (e.g. with Musescore). Some of the tests depend on [musicdiff](https://pypi.org/project/musicdiff), but converter21 itself does not.
9+
Depends on [music21](https://pypi.org/project/music21) v8.1, which should also be configured (instructions [here](https://web.mit.edu/music21/doc/usersGuide/usersGuide_01_installing.html)) to display a musical score (e.g. with Musescore). Some of the tests depend on [musicdiff](https://pypi.org/project/musicdiff), but converter21 itself does not.
1010

1111
## Command line tool usage:
1212
```

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
import setuptools
1212

13-
converter21version = '2.0.0'
13+
converter21version = '2.0.1'
1414

1515
if __name__ == '__main__':
1616
setuptools.setup(
@@ -57,7 +57,7 @@
5757
python_requires='>=3.9',
5858

5959
install_requires=[
60-
'music21>=8.2',
60+
'music21>=8.1',
6161
],
6262

6363
project_urls={

0 commit comments

Comments
 (0)