-
Notifications
You must be signed in to change notification settings - Fork 423
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update chpldoc dependencies #24612
Merged
Merged
Update chpldoc dependencies #24612
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
06e499b
Experimentally try Sphinx 7
mppf e29d133
Avoid generating include samples in breathe docs
mppf bd82558
Add TraceElement since it's defined in a no-doc'd section
mppf 20cb682
Turn nitpicking back on
mppf 116eb80
Update chpldoc python version requirement to 3.9
mppf e258537
Use sphinxcontrib-chapeldomain-0.0.32
mppf 29f4cb2
Fix docs build errors
mppf f8faae6
Fix more docs build errors
mppf bd3487b
Update projectVersion pattern matching
mppf 1f8dd11
Update pattern matching in nested.doc.prediff
mppf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 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 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 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,4 +1,9 @@ | ||
#!/usr/bin/env bash | ||
|
||
sed -e '/^Running Sphinx v/,/URL_ROOT:/d;s/^ *//;/LANGUAGE:/,$d' $2 > $2.tmp | ||
mv $2.tmp $2 | ||
# if the docs build suceeded, replace the output to check with | ||
# the generated VERSION line, trimmed to remove leading spaces | ||
if [ -f docs/_static/documentation_options.js ] | ||
then | ||
grep VERSION docs/_static/documentation_options.js | sed 's/^ *//' > $2.tmp | ||
mv $2.tmp $2 | ||
fi |
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,2 +1 @@ | ||
error: Invalid version format: 21.0. due to: Cannot end with dot, can end with either number or tag | ||
cat: docs/_static/documentation_options.js: No such file or directory |
1 change: 0 additions & 1 deletion
1
test/chpldoc/compflags/version/projectVersion.invalidCharacter.doc.good
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,2 +1 @@ | ||
error: Invalid version format: a.c.d due to: Invalid Characters, only digits and dots permitted before a hyphen | ||
cat: docs/_static/documentation_options.js: No such file or directory |
1 change: 0 additions & 1 deletion
1
test/chpldoc/compflags/version/projectVersion.invalidTag.doc.good
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,2 +1 @@ | ||
error: Invalid version format: 21.0.3-invalid due to: Tag not supported, supported tags are alpha/beta/rc | ||
cat: docs/_static/documentation_options.js: No such file or directory |
1 change: 0 additions & 1 deletion
1
test/chpldoc/compflags/version/projectVersion.lessDots.doc.good
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,2 +1 @@ | ||
error: Invalid version format: 21.0-alpha due to: Required only two dots which separates three numbers | ||
cat: docs/_static/documentation_options.js: No such file or directory |
1 change: 0 additions & 1 deletion
1
test/chpldoc/compflags/version/projectVersion.missingNumbers.doc.good
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,2 +1 @@ | ||
error: Invalid version format: 21..3 due to: Missing number between dots | ||
cat: docs/_static/documentation_options.js: No such file or directory |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# Split into 3 files to work around problems with CHPL_PIP_FROM_SOURCE | ||
MarkupSafe==2.1.3 | ||
MarkupSafe==2.1.5 | ||
lydia-duncan marked this conversation as resolved.
Show resolved
Hide resolved
|
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,7 +1,7 @@ | ||
# Split into 3 files to work around problems with CHPL_PIP_FROM_SOURCE | ||
Jinja2==3.1.3 | ||
Pygments==2.17.2 | ||
Sphinx==5.3.0 | ||
urllib3==2.1.0 | ||
docutils==0.18 | ||
Sphinx==7.2.6 | ||
urllib3==2.2.1 | ||
docutils==0.20.1 | ||
babel==2.14.0 |
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,4 +1,4 @@ | ||
# Split into 3 files to work around problems with CHPL_PIP_FROM_SOURCE | ||
sphinx-rtd-theme==2.0.0 | ||
sphinxcontrib-chapeldomain==0.0.31 | ||
sphinxcontrib-chapeldomain==0.0.32 | ||
breathe==4.35.0 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the search box from sphinx-rtd-theme now uses jquery