Changeset 911b175d for doc/conf.py
- Timestamp:
- Mar 26, 2017, 1:31:48 PM (8 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler
- Children:
- 7928b3b8
- Parents:
- 1136442 (diff), 2a7bcaa (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/conf.py
r1136442 r911b175d 13 13 14 14 import sys, os 15 16 # get version using this_version.py 17 sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..')) 18 from this_version import get_aubio_version 15 19 16 20 # If extensions (or modules to document with autodoc) are in another directory, … … 49 53 # 50 54 # The short X.Y version. 51 version = '0.4' 55 56 version = get_aubio_version()[:3] 52 57 # The full version, including alpha/beta/rc tags. 53 release = '0.4.5~alpha'58 release = get_aubio_version() 54 59 55 60 # The language for content autogenerated by Sphinx. Refer to documentation … … 65 70 # List of patterns, relative to source directory, that match files and 66 71 # directories to ignore when looking for source files. 67 exclude_patterns = ['_build'] 72 exclude_patterns = ['_build', 73 'statuslinks.rst', 74 'download.rst', 75 'binaries.rst', 76 'debian_packages.rst', 77 'building.rst', 78 'android.rst', 79 'xcode_frameworks.rst', 80 'requirements.rst', 81 'cli_features.rst', 82 ] 68 83 69 84 # The reST default role (used for this markup: `text`) to use for all documents.
Note: See TracChangeset
for help on using the changeset viewer.