diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-07-13 10:02:53 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-07-13 10:02:53 -0400 |
commit | baed628b8d363a2663ffabe675e6cd11356532c2 (patch) | |
tree | fd27991feffcbc475847394136c2847655a800e8 /docs | |
parent | 8033c78a52b25a5145557a21630d10a34f2209e5 (diff) | |
download | alembic-baed628b8d363a2663ffabe675e6cd11356532c2.tar.gz |
build fixes
* hardcode rev ids in test that's sensitive to overlapping
substrings
* turn off nitpicky mode
* fix a few rst keywords
* ensure unreleased files not considered as indexable
Change-Id: I31a0f2cbf40c794204c1e7dbc68bfcf43992c65f
Diffstat (limited to 'docs')
-rw-r--r-- | docs/build/changelog.rst | 12 | ||||
-rw-r--r-- | docs/build/conf.py | 5 |
2 files changed, 10 insertions, 7 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 2cfd055..9d43e0c 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -589,7 +589,7 @@ Changelog also changing the column type, would cause an ALTER COLUMN operation to incorrectly render a second ALTER statement without the nullability if a new type were also present, as the MSSQL-specific contract did not - anticipate all three of "nullability", "type_" and "existing_type" being + anticipate all three of "nullability", ``"type_"`` and "existing_type" being sent at the same time. @@ -870,7 +870,7 @@ Changelog yet been updated, these can be modified directly in order to maintain compatibility: - * :meth:`.Operations.drop_constraint` - "type" (use "type_") and "name" + * :meth:`.Operations.drop_constraint` - "type" (use ``"type_"``) and "name" (use "constraint_name") * :meth:`.Operations.create_primary_key` - "cols" (use "columns") and @@ -2296,10 +2296,10 @@ Changelog :tags: bug, batch :tickets: 391 - Batch mode will not use CAST() to copy data if type_ is given, however + Batch mode will not use CAST() to copy data if ``type_`` is given, however the basic type affinity matches that of the existing type. This to avoid SQLite's CAST of TIMESTAMP which results in truncation of the - data, in those cases where the user needs to add redundant type_ for + data, in those cases where the user needs to add redundant ``type_`` for other reasons. .. change:: @@ -3686,8 +3686,8 @@ Changelog Added quoting to the table name when the special EXEC is run to drop any existing server defaults or constraints when the - :paramref:`.drop_column.mssql_drop_check` or - :paramref:`.drop_column.mssql_drop_default` + :paramref:`.Operations.drop_column.mssql_drop_check` or + :paramref:`.Operations.drop_column.mssql_drop_default` arguments are used. .. change:: diff --git a/docs/build/conf.py b/docs/build/conf.py index a95e869..940610b 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -76,7 +76,10 @@ source_suffix = ".rst" # The encoding of source files. # source_encoding = 'utf-8' -nitpicky = True +nitpicky = False + +exclude_patterns = ["build", "unreleased*/*", "**/*_include.rst"] + # The master toctree document. master_doc = "index" |