Skip to content

Commit

Permalink
Merge pull request #25 from apetresc/mutagen-aiff-bitdepth
Browse files Browse the repository at this point in the history
Check for real bitdepth value in AIFFTest.
  • Loading branch information
sampsyo committed Dec 6, 2019
2 parents b6b3520 + 91444c3 commit b3343c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -100,7 +100,7 @@ def _read(filename):

install_requires=[
'six>=1.9',
'mutagen>=1.33',
'mutagen>=1.43',
] + (['enum34>=1.0.4'] if sys.version_info < (3, 4, 0) else []),

tests_require=[
Expand Down
2 changes: 1 addition & 1 deletion test/test_mediafile.py
Expand Up @@ -930,7 +930,7 @@ class AIFFTest(ReadWriteTestBase, unittest.TestCase):
'bitrate': 705600,
'format': u'AIFF',
'samplerate': 44100,
'bitdepth': 0,
'bitdepth': 16,
'channels': 1,
}

Expand Down

0 comments on commit b3343c4

Please sign in to comment.