-
Notifications
You must be signed in to change notification settings - Fork 547
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[stable 2.18] remove the relaxed reqs (#2361)
* rm relaxed reqs and base constraints * move pins and requirements out of relaxed * sync requirements lock file * update noxfile to rm relaxed reqs * update docs
- Loading branch information
Showing
8 changed files
with
47 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
# This constraints file contains pins for the stable, tested versions of sphinx | ||
# and antsibull-docs that production builds rely upon. | ||
# This constraint file also pins other versions for which there are known limitations. | ||
|
||
sphinx == 7.2.5 | ||
antsibull-docs == 2.16.2 # currently approved version | ||
|
||
rstcheck < 6 # rstcheck 6.x has problem with rstcheck.core triggered by include files w/ sphinx directives https://github.com/rstcheck/rstcheck-core/issues/3 | ||
sphinx-rtd-theme>=2.0.0 # Fix 404 pages with new sphinx -- https://github.com/ansible/ansible-documentation/issues/678 | ||
jinja2 >= 3.0.0 # https://github.com/ansible/ansible/blob/stable-2.18/requirements.txt | ||
pyyaml >= 5.1 # https://github.com/ansible/ansible/blob/stable-2.18/requirements.txt | ||
resolvelib >= 0.5.3, < 1.1.0 # https://github.com/ansible/ansible/blob/stable-2.18/requirements.txt |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# This requirements file is used for stable ansible docs builds | ||
# It depends on specific, tested antsibull-docs and sphinx versions | ||
# This requirements file is used for doc builds | ||
|
||
-c constraints.in # <-- contains known limitations | ||
-r requirements-relaxed.in # <-- contains base set of dependencies | ||
|
||
# Base set of dependencies. | ||
|
||
antsibull-docs | ||
sphinx | ||
sphinx-intl # translation utility used by docs/docsite/Makefile | ||
sphinx-notfound-page # extension used for the custom 404 page (cowsay) | ||
sphinx-ansible-theme # extension used for the custom docs theme | ||
sphinx-copybutton | ||
rstcheck | ||
jinja2 # used by hacking/build_library/build_ansible/command_plugins/generate_man.py and dump_keywords.py | ||
pyyaml # used by ansible-core | ||
resolvelib # used by ansible-core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters