Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion documentation/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# music21 documentation build configuration file, created by
# sphinx-quickstart on Fri Jun 14 16:48:40 2013.
#
# conf.py
#
# This file is execfile()d with the current directory set to its containing dir.
#
# Note that not all possible configuration values are present in this
Expand Down Expand Up @@ -271,7 +273,9 @@ def _filtered_warning(self, msg, *args, **kw):
# does not find anchor immediately. should wait longer
r'https://github.com/cuthbertLab/music21/blob/master/README.md#community-code-of-conduct',
r'https://docutils.sourceforge.io/rst.html', # anti bot?
r'https://id.loc.gov/vocabulary/relators.html', # LOC + captcha? Shame!
r'https://id.loc.gov/vocabulary/relators.html', # LOC + captcha? Shame!
r'https://musescore.com/', # being picky:

]

# -- Options for manual page output --------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion music21/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
'''
from __future__ import annotations

__version__ = '10.2.0b2'
__version__ = '10.3.0'

def get_version_tuple(vv):
v = vv.split('.')
Expand Down
2 changes: 1 addition & 1 deletion music21/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<class 'music21.base.Music21Object'>

>>> music21.VERSION_STR
'10.2.0b2'
'10.3.0'

Alternatively, after doing a complete import, these classes are available
under the module "base":
Expand Down
Binary file modified music21/corpus/_metadataCache/core.p.gz
Binary file not shown.
1 change: 0 additions & 1 deletion music21/ipython21/converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ def displayMusic21jMIDI(
binaryMidiData: bytes = f.read()

htmlOutput = htmlOutputForMidi(binaryMidiData)
displayMusic21jMIDIMarimo(htmlOutput)

if runningInJupyterOrColab():
displayMusic21jMIDIJupyter(htmlOutput)
Expand Down
Loading