Merge pull request #94 from pacrob/change-doc-to-docs

change references to doc to all be docs
This commit is contained in:
Paul Robinson
2023-05-11 14:44:48 -06:00
committed by GitHub
7 changed files with 8 additions and 8 deletions

View File

@ -13,4 +13,4 @@ python:
- method: pip - method: pip
path: . path: .
extra_requirements: extra_requirements:
- doc - docs

View File

@ -190,7 +190,7 @@ html_theme = "sphinx_rtd_theme"
# html_file_suffix = None # html_file_suffix = None
# Output file base name for HTML help builder. # Output file base name for HTML help builder.
htmlhelp_basename = "<MODULE_NAME>doc" htmlhelp_basename = "<MODULE_NAME>docs"
# -- Options for LaTeX output --------------------------------------------- # -- Options for LaTeX output ---------------------------------------------

View File

@ -11,7 +11,7 @@ Each file should be named like `<ISSUE>.<TYPE>.rst`, where
* `breaking` * `breaking`
* `bugfix` * `bugfix`
* `deprecation` * `deprecation`
* `doc` * `docs`
* `feature` * `feature`
* `internal` * `internal`
* `misc` * `misc`

View File

@ -10,7 +10,7 @@ ALLOWED_EXTENSIONS = {
".breaking.rst", ".breaking.rst",
".bugfix.rst", ".bugfix.rst",
".deprecation.rst", ".deprecation.rst",
".doc.rst", ".docs.rst",
".feature.rst", ".feature.rst",
".internal.rst", ".internal.rst",
".misc.rst", ".misc.rst",

View File

@ -23,7 +23,7 @@ name = "Deprecations"
showcontent = true showcontent = true
[[tool.towncrier.type]] [[tool.towncrier.type]]
directory = "doc" directory = "docs"
name = "Improved Documentation" name = "Improved Documentation"
showcontent = true showcontent = true

View File

@ -18,7 +18,7 @@ extras_require = {
"pydocstyle>=6.0.0", "pydocstyle>=6.0.0",
"black>=23", "black>=23",
], ],
"doc": [ "docs": [
"sphinx>=6.0.0", "sphinx>=6.0.0",
"sphinx_rtd_theme>=1.0.0", "sphinx_rtd_theme>=1.0.0",
"towncrier>=21,<22", "towncrier>=21,<22",
@ -38,7 +38,7 @@ extras_require["dev"] = (
extras_require["dev"] extras_require["dev"]
+ extras_require["test"] + extras_require["test"]
+ extras_require["lint"] + extras_require["lint"]
+ extras_require["doc"] + extras_require["docs"]
) )

View File

@ -34,7 +34,7 @@ basepython=
py311: python3.11 py311: python3.11
extras= extras=
test test
docs: doc docs
allowlist_externals=make allowlist_externals=make
[common-lint] [common-lint]