Skip to content

Commit a8cfbe2

Browse files
authored
Merge branch 'main' into autoClaudeReview
2 parents 80bc46e + a6be3f1 commit a8cfbe2

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

.ci/docker/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pandocfilters==1.5.1
1616
markdown==3.8.2
1717

1818
# PyTorch Theme
19-
pytorch_sphinx_theme2==0.4.6
19+
pytorch_sphinx_theme2==0.4.9
2020

2121
# Tutorial dependencies
2222
tqdm==4.66.1
@@ -34,10 +34,10 @@ bs4
3434
awscliv2==2.1.1
3535
flask
3636
spacy==3.7.1 # Keep this version consistent with the model version in .jenkins/build.sh
37-
ray[serve,train,tune]==2.54.0
37+
ray[serve,train,tune]==2.55.0
3838
tiktoken
3939
tensorboard
40-
jinja2==3.1.3
40+
jinja2==3.1.6
4141
pytorch-lightning
4242
torchx
4343
torchrl==0.10.1

.github/workflows/docathon-assign.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
repo: context.repo.repo,
2929
issue_number: issueNumber
3030
});
31-
const hasLabel = issue.labels.some(label => label.name === 'docathon-h1-2025');
31+
const hasLabel = issue.labels.some(label => label.name === 'docathon-2026');
3232
if (hasLabel) {
3333
if (issue.assignee !== null) {
3434
await github.rest.issues.createComment({
3535
owner: context.repo.owner,
3636
repo: context.repo.repo,
3737
issue_number: issueNumber,
38-
body: "The issue is already assigned. Please pick an opened and unnasigned issue with the [docathon-h1-2025 label](https://github.com/pytorch/pytorch/issues?q=is%3Aopen+is%3Aissue+label%3Adocathon-h1-2025)."
38+
body: "The issue is already assigned. Please pick an opened and unnasigned issue with the [docathon-2026 label](https://github.com/pytorch/pytorch/issues?q=is%3Aopen+is%3Aissue+label%3Adocathon-2026)."
3939
});
4040
} else {
4141
await github.rest.issues.addAssignees({
@@ -46,7 +46,7 @@ jobs:
4646
});
4747
}
4848
} else {
49-
const commmentMessage = "This issue does not have the correct label. Please pick an opened and unnasigned issue with the [docathon-h1-2025 label](https://github.com/pytorch/pytorch/issues?q=is%3Aopen+is%3Aissue+label%3Adocathon-h1-2025)."
49+
const commmentMessage = "This issue does not have the correct label. Please pick an opened and unnasigned issue with the [docathon-2026 label](https://github.com/pytorch/pytorch/issues?q=is%3Aopen+is%3Aissue+label%3Adocathon-2026)."
5050
await github.rest.issues.createComment({
5151
owner: context.repo.owner,
5252
repo: context.repo.repo,

conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ def wrapper(*args, **kwargs):
203203
html_theme_options = {
204204
"navigation_with_keys": False,
205205
"analytics_id": "GTM-T8XT4PS",
206+
"llm_generate_full": "false",
206207
"logo": {
207208
"text": "",
208209
},

0 commit comments

Comments
 (0)