Skip to content

Commit 9362472

Browse files
Merge pull request #237 from neutrinoceros/upgrade_sphinx
2 parents aa0689b + 4447d33 commit 9362472

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ commands:
5353
5454
# install yt_astro_analysis with extra dev dependencies
5555
python -m pip install .
56-
python -m pip install --requirement test_requirements.txt
56+
python -m pip install --requirement requirements/tests.txt
5757
5858
# configure yt
5959
mkdir -p $HOME/.config/yt # avoid a warning from yt
@@ -117,7 +117,7 @@ commands:
117117
command: |
118118
source $HOME/venv/bin/activate
119119
python -m pip install --upgrade pip
120-
python -m pip install --requirement doc/requirements.txt
120+
python -m pip install --requirement requirements/docs.txt
121121
cd doc/source
122122
python -m sphinx -M html "." "_build" -W
123123

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
version: 2
22
updates:
3+
- package-ecosystem: pip
4+
directory: /requirements
5+
schedule:
6+
interval: monthly
7+
38
- package-ecosystem: github-actions
49
directory: /.github/workflows
510
schedule:

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ build:
1414

1515
python:
1616
install:
17-
- requirements: doc/requirements.txt
17+
- requirements: requirements/docs.txt
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
sphinx==4.5.0
1+
. # install yt_astro_analysis
2+
sphinx==7.2.6
23
sphinx-bootstrap-theme==0.8.1
34
jinja2==3.1.2
45
markupsafe==2.1.3

0 commit comments

Comments
 (0)