diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-07-22 16:32:01 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-07-22 16:32:01 -0400 |
commit | 39c72682b85c1d3912ced383733d03eca7a43845 (patch) | |
tree | 701e42240022d7d4d40dec8d979e1f7af33336e6 /doc/build/conf.py | |
parent | 91e3c36e450fd0e4706e31b8000ec65fb460fbf7 (diff) | |
download | sqlalchemy-39c72682b85c1d3912ced383733d03eca7a43845.tar.gz |
- move to file-per-changelog for unreleased change notes,
so that we no longer have to rely upon merges within
the changelog files. because gerrit doesn't allow us
to use custom merge engines unlike git, we have no ability
to merge multiple changes into the changelog files without
going through conflicts. new version of changelog
in git supports these new patterns.
Change-Id: I588eebd027b4ad3428bd522f36a6f1cd77f105bb
Diffstat (limited to 'doc/build/conf.py')
-rw-r--r-- | doc/build/conf.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/build/conf.py b/doc/build/conf.py index b50cfb8f8..eadd07dfc 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -27,7 +27,7 @@ import sqlalchemy # -- General configuration ----------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.0' +needs_sphinx = '1.6.0' # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. @@ -70,6 +70,11 @@ changelog_render_pullreq = { changelog_render_changeset = "http://www.sqlalchemy.org/trac/changeset/%s" +exclude_patterns = [ + 'build', + '**/unreleased*/*', +] + autodocmods_convert_modname = { "sqlalchemy.sql.sqltypes": "sqlalchemy.types", "sqlalchemy.sql.type_api": "sqlalchemy.types", @@ -115,7 +120,7 @@ site_adapter_py = "docs_adapter.py" # arbitrary number recognized by builders.py, incrementing this # will force a rebuild -build_number = 3 +build_number = "3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -127,10 +132,6 @@ build_number = 3 # Else, today_fmt is used as the format for a strftime call. #today_fmt = '%B %d, %Y' -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -exclude_patterns = ['build'] - # The reST default role (used for this markup: `text`) to use for all documents. #default_role = None |