Skip to content

Commit 0ea1e00

Browse files
authored
Merge pull request #1795 from cuthbertLab/v9.7.1
music21 v9.7.1
2 parents 8f7cd8f + 0548ad6 commit 0ea1e00

File tree

7 files changed

+21
-20
lines changed

7 files changed

+21
-20
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ lib64
4444
__pycache__
4545
**/__pycache__
4646
venv
47+
.venv
4748

4849
# Installer logs
4950
pip-log.txt

dist/dist.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Authors: Christopher Ariza
77
# Michael Scott Asato Cuthbert
88
#
9-
# Copyright: Copyright © 2010-2024 Michael Scott Asato Cuthbert
9+
# Copyright: Copyright © 2010-2025 Michael Scott Asato Cuthbert
1010
# License: BSD, see license.txt
1111
# ------------------------------------------------------------------------------
1212
'''
@@ -39,11 +39,11 @@
3939
7. run documentation/make.py clean (skip on minor version changes) -- you may need to make a
4040
documentation/build directory first.
4141
8. run documentation/make.py linkcheck [*] - missing http://www.musicxml.org/dtds/partwise.dtd
42-
and code-of-conduct links are both okay. The points about
42+
and code-of-conduct links are both okay to fail. The points about
4343
"more than one target found for cross-reference 'Direction'"
4444
are known bugs in Sphinx (when the same named Enum appears in different modules)
4545
and we can't fix.
46-
StackOverflow seems also to be presenting linkcheck -- check manually every once in
46+
StackOverflow seems also to be preventing linkcheck -- check manually every once in
4747
a while, but looking good May 2025.
4848
Ignore the errors at the end if everything looks good.
4949
9. run documentation/make.py [*]
@@ -68,7 +68,7 @@
6868
DO NOT RUN THIS ON A PC or the Mac .tar.gz might have an incorrect permission if you do.
6969
7070
14. PR and Commit to GitHub at this point w/ commit comment of the new version,
71-
then don't change anything until the next step is done.
71+
then don't change anything until the next step is done. Merge to main/master
7272
(.gitignore will avoid uploading the large files created here.)
7373
7474
15. Switch back to master/main branch

music21/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
'''
5151
from __future__ import annotations
5252

53-
__version__ = '9.7.0'
53+
__version__ = '9.7.1'
5454

5555
def get_version_tuple(vv):
5656
v = vv.split('.')

music21/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Authors: Michael Scott Asato Cuthbert
77
# Christopher Ariza
88
#
9-
# Copyright: Copyright © 2006-2024 Michael Scott Asato Cuthbert
9+
# Copyright: Copyright © 2006-2025 Michael Scott Asato Cuthbert
1010
# License: BSD, see license.txt
1111
# -----------------------------------------------------------------------------
1212
'''
@@ -27,7 +27,7 @@
2727
<class 'music21.base.Music21Object'>
2828
2929
>>> music21.VERSION_STR
30-
'9.7.0'
30+
'9.7.1'
3131
3232
Alternatively, after doing a complete import, these classes are available
3333
under the module "base":
573 Bytes
Binary file not shown.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dependencies = [
4848
"jsonpickle",
4949
"matplotlib",
5050
"more_itertools",
51-
"numpy<2.0.0",
51+
"numpy>=1.26.4",
5252
"requests",
5353
"webcolors>=1.5",
5454
]

requirements_dev.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
-r requirements.txt
2-
wheel
3-
pylint>=3.2.0
2+
coverage
3+
coveralls
4+
docutils
45
flake8<7.0.0
56
flake8-quotes>=3.3.2
7+
hatch
68
hatchling
7-
mypy>=1.13.0
8-
coveralls
9-
scipy
10-
sphinx
11-
python-Levenshtein
12-
coverage
13-
nbconvert
149
jupyter
10+
mypy>=1.16.0
11+
nbconvert
1512
nbval
13+
pylint>=3.2.0
1614
pytest
17-
docutils
18-
types-requests
15+
python-Levenshtein
16+
scipy
17+
sphinx
1918
twine
20-
hatch
19+
types-requests
20+
wheel

0 commit comments

Comments
 (0)