Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the 9999 from top left of docs pages #501

Merged
merged 3 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
To build docs:

- create an environment using the ``requirements.txt`` file in this directory
- run ``make`` in this directory
- find the docs is "./build/html", probably starting with file "index.html"
- `cd docs`
- create an environment using the `requirements.txt` file in this directory, e.g., `pip install -r requirements.txt`
- run `make html`
- open `build/html/index.html`
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
project = 'kerchunk'
copyright = '2021, Martin Durant'
author = 'Martin Durant'
version = kerchunk.__version__
# No easy way to get the latest version based on how the github pages are built/deployed, so leave it blank or else it will be 9999
version = ''

# -- General configuration ---------------------------------------------------

Expand Down
Loading