Skip to content

Commit b4ce7b8

Browse files
committed
πŸ”§ MAINT: Rename doc to docs
1 parent 35751c2 commit b4ce7b8

File tree

12 files changed

+11
-10
lines changed

12 files changed

+11
-10
lines changed

β€Ž.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- cache-pip
1919
# Install the packages needed to build our documentation
2020
# This will depend on your particular package!
21-
- run: pip install --user -r doc/requirements.txt
21+
- run: pip install --user -r docs/requirements.txt
2222
- run: pip install --user .
2323
# Cache some files for a speedup in subsequent builds
2424
- save_cache:
@@ -33,7 +33,7 @@ jobs:
3333
make html
3434
# Tell Circle to store the documentation output in a folder that we can access later
3535
- store_artifacts:
36-
path: doc/_build/html/
36+
path: docs/_build/html/
3737
destination: html
3838

3939
# Tell CircleCI to use this workflow when it builds the site

β€Ž.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ jobs:
6161
python -m pip install --upgrade pip
6262
git submodule update --init
6363
pip install -e .
64-
pip install -r doc/requirements.txt
64+
pip install -r docs/requirements.txt
6565
6666
- name: Build docs
6767
run: |
68-
cd doc
68+
cd docs
6969
make html
7070
7171
publish:

β€ŽMANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
graft doc/
2-
prune doc/_build
1+
graft docs/
2+
prune docs/_build

β€ŽREADME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A small sphinx extension to add a "copy" button to code blocks.
66

77
See [the sphinx-copybutton documentation](https://sphinx-copybutton.readthedocs.io/en/latest/) for more details!
88

9-
![](doc/_static/copybutton.gif)
9+
![](docs/_static/copybutton.gif)
1010

1111
## Installation
1212

File renamed without changes.
File renamed without changes.

β€Ždoc/conf.py renamed to β€Ždocs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@
7272
# The theme to use for HTML and HTML Help pages. See the documentation for
7373
# a list of builtin themes.
7474
#
75-
html_theme = "alabaster"
75+
# html_theme = "alabaster"
7676
# html_theme = "sphinx_rtd_theme"
77-
# html_theme = "sphinx_book_theme"
77+
html_theme = "sphinx_book_theme"
7878

7979
# Theme options are theme-specific and customize the look and feel of a theme
8080
# further. For a list of options available for each theme, see the
File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
sphinx
22
ipython
3+
sphinx-book-theme
34

45
# Install ourselves
56
.
File renamed without changes.

β€Žreadthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sphinx-copybutton
22
type: sphinx
3-
requirements_file: doc/requirements.txt
3+
requirements_file: docs/requirements.txt
44
python:
55
version: 3

0 commit comments

Comments
Β (0)