File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1212# add these directories to sys.path here. If the directory is relative to the
1313# documentation root, use os.path.abspath to make it absolute, like shown here.
1414#
15+ import importlib
1516import os
1617import sys
1718sys .path .insert (0 , os .path .abspath ('../..' ))
1819sys .path .insert (0 , os .path .abspath ("../../.." ))
1920print (sys .path )
2021
21- import wavinfo
22+ import importlib
2223
2324# -- Project information -----------------------------------------------------
2425
2526project = u'wavinfo'
26- copyright = u'2018-2023 , Jamie Hardt'
27+ copyright = u'2018-2024 , Jamie Hardt'
2728author = u'Jamie Hardt'
2829
2930# The short X.Y version
30- version = wavinfo . __short_version__
31+ version = "3.1"
3132# The full version, including alpha/beta/rc tags
32- release = wavinfo . __version__
33+ release = importlib . metadata . version ( "wavinfo" )
3334
3435
3536# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 3939Sampler Metadata
4040----------------
4141
42- * `RecordingBlogs.com — Sample chunk (of a Wave file)<https://www.recordingblogs.com/wiki/sample-chunk-of-a-wave-file> `_
42+ * `RecordingBlogs.com — Sample chunk (of a Wave file) <https://www.recordingblogs.com/wiki/sample-chunk-of-a-wave-file >`_
4343
4444RIFF Metadata
4545-------------
Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ wavinfo = 'wavinfo.__main__:main'
4848[tool .poetry .dependencies ]
4949python = " ^3.8"
5050lxml = " ~= 5.3.0"
51- sphinx_rtd_theme = {version = ' >= 1.1.1' , optional =true , extras =[ ' doc ' ] }
52- sphinx = {version = ' >= 5.3.0' , optional =true , extras =[ ' doc ' ] }
51+ sphinx_rtd_theme = {version = ' >= 1.1.1' , optional =true }
52+ sphinx = {version = ' >= 5.3.0' , optional =true }
5353
5454[tool .pyright ]
5555typeCheckingMode = " basic"
You can’t perform that action at this time.
0 commit comments