Skip to content

Commit 2a01bfe

Browse files
authored
Merge branch 'main' into patch-1
2 parents 18a712d + 02f15a6 commit 2a01bfe

24 files changed

Lines changed: 411 additions & 45 deletions

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "monthly"
12+
groups:
13+
actions:
14+
patterns:
15+
- "*"
16+
labels:
17+
- "dependencies"

.github/workflows/create-meeting-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
create-team-issue:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v5
1414
- uses: JasonEtco/create-an-issue@v2
1515
env:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/linkcheck.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
name: Build documentation
22

33
on:
4+
schedule:
5+
# Once a month is enough
6+
- cron: '0 1 15 * *'
47
pull_request:
8+
workflow_dispatch:
59

610
jobs:
711
check-links:
812
runs-on: ubuntu-latest
913
steps:
10-
- uses: actions/checkout@v3
11-
- uses: actions/setup-python@v4
14+
- uses: actions/checkout@v5
15+
- uses: actions/setup-python@v6
1216
with:
13-
python-version: '3.9'
17+
python-version: '3.13'
1418
cache: 'pip'
1519

1620
- name: Build the documentation
@@ -21,7 +25,7 @@ jobs:
2125
# ref: https://github.com/lycheeverse/lychee-action
2226
# ref: https://github.com/lycheeverse/lychee#commandline-parameters
2327
- name: Link Checker
24-
uses: lycheeverse/lychee-action@v1.5.4
28+
uses: lycheeverse/lychee-action@v2.6.1
2529
env:
2630
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
2731
with:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
docs/_build
1+
_build
22
*.ipynb_checkpoints
33
.vscode/
44
docs/gallery.txt

.readthedocs.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
version: 2
22

3+
build:
4+
os: "ubuntu-22.04"
5+
tools:
6+
python: "3.11"
7+
38
python:
4-
version: 3
59
install:
610
- requirements: requirements.txt
711

812
sphinx:
913
builder: dirhtml
1014
fail_on_warning: true
15+
configuration: docs/conf.py
1.89 MB
Binary file not shown.
2.67 MB
Binary file not shown.
1.68 MB
Binary file not shown.

docs/blog/2020-08-07-announce-book.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@ Jupyter Book and its related projects will continue to be developed as a part of
125125

126126
If you'd like to learn more about Jupyter Book or get started building your own books, then check out [the new Jupyter Book documentation](https://jupyterbook.org). Jupyter Book is still in beta and is constantly being improved, so your [feedback and contributions are always welcome](https://github.com/executablebooks/jupyter-book/issues/new/choose).
127127

128-
If there are particular features you'd like to see, open an issue or give a 👍 to a pre-existing issue, and [it will be bumped up on the feature request leaderboard](https://executablebooks.org/en/latest/feature-vote.html).
128+
If there are particular features you'd like to see, open an issue or give a 👍 to a pre-existing issue, and [it will be bumped up on the feature request leaderboard](https://executablebooks.org/en/latest/feature-vote).
129129

130130
## Get involved
131131

132-
If you'd like to contribute to any of the projects listed in this post, you are highly encouraged to do so! The Executable Book Project (and thus Jupyter Book) is run as an open project that [welcomes contributions from others](https://executablebooks.org/en/latest/contributing.html).
132+
If you'd like to contribute to any of the projects listed in this post, you are highly encouraged to do so! The Executable Book Project (and thus Jupyter Book) is run as an open project that [welcomes contributions from others](https://executablebooks.org/en/latest/contributing).
133133

134134
We are excited about all the new features and improvements in the new Jupyter Book, and look forward to seeing the new books that the community creates with this stack!

docs/blog/2021-12-18-agu-2021.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
:author: Chris Holdgraf
55
```
66

7-
The [AGU 2021 conference](https://www.agu.org/Fall-Meeting) just wrapped up, and Jupyter Book made a few appearances at the conference this year.
7+
The AGU 2021 conference just wrapped up, and Jupyter Book made a few appearances at the conference this year.
88
Below are a few links to videos and Google Slides for each session.
99

1010
## Jupyter Book 101: A tutorial introduction to Jupyter Book

0 commit comments

Comments
 (0)