diff --git a/setup.py b/setup.py index d8e3987..ee26d90 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,8 @@ setup(name='wavinfo', "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9"], + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10"], keywords='waveform metadata audio ebu smpte avi library film tv editing editorial', install_requires=['lxml', 'ear'], entry_points={ diff --git a/wavinfo/__init__.py b/wavinfo/__init__.py index 44f7ace..02d6843 100644 --- a/wavinfo/__init__.py +++ b/wavinfo/__init__.py @@ -7,6 +7,6 @@ Go to the documentation for wavinfo.WavInfoReader for more information. from .wave_reader import WavInfoReader from .riff_parser import WavInfoEOFError -__version__ = '1.6.2' +__version__ = '1.6.3' __author__ = 'Jamie Hardt ' __license__ = "MIT"