Skip to content

Commit 8a3c350

Browse files
committed
Merge branch 'ershi/more-release-updates' into 'release-1.11'
More updates for the v1.11 release branch See merge request omniverse/warp!1885
2 parents 3756dd7 + a055830 commit 8a3c350

153 files changed

Lines changed: 10688 additions & 10318 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ Include any limitations or non-handled areas in the changes.
2020
- [ ] All commits are [signed-off](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt--s) to indicate that your contribution adheres to the [Developer Certificate of Origin](https://developercertificate.org/) requirements
2121
- [ ] Necessary tests have been added
2222
- [ ] Documentation is up-to-date
23-
- [ ] Auto-generated files modified by compiling Warp and building the documentation have been updated (e.g. `__init__.pyi`, `functions.rst`)
23+
- [ ] Auto-generated files modified by compiling Warp and building the documentation have been updated (e.g. `__init__.pyi`, `docs/api_reference/`, `docs/language_reference/`)
2424
- [ ] Code passes formatting and linting checks with `pre-commit run -a`

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,8 @@ jobs:
243243
name: build-docs-output
244244
path: |
245245
warp/__init__.pyi
246-
docs/modules/functions.rst
246+
docs/api_reference
247+
docs/language_reference
247248
248249
check-build-docs-output:
249250
runs-on: ubuntu-latest
@@ -256,12 +257,12 @@ jobs:
256257
with:
257258
name: build-docs-output
258259
path: .
259-
- name: Check functions.rst
260+
- name: Check API reference docs
260261
env:
261262
ARTIFACT_URL: ${{ needs.build-docs.outputs.artifact-url }}
262263
run: >
263-
git diff --exit-code docs/modules/functions.rst ||
264-
(echo "Please run build_docs.py (or download from $ARTIFACT_URL) and add docs/modules/functions.rst to your pull request." && false)
264+
git diff --exit-code docs/api_reference docs/language_reference ||
265+
(echo "Please run build_docs.py (or download from $ARTIFACT_URL) and add docs/api_reference and docs/language_reference to your pull request." && false)
265266
- name: Check stubs
266267
env:
267268
ARTIFACT_URL: ${{ needs.build-docs.outputs.artifact-url }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ warp_lang.egg-info
1515
/build
1616
/dist
1717
/docs/_build
18+
/docs/**/_generated
1819

1920
# IDE and editor files
2021
.idea/

0 commit comments

Comments
 (0)