-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: scverse-bot <None> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
0dcbc48
commit 6bd5ce6
Showing
3 changed files
with
65 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
diff a/docs/conf.py b/docs/conf.py (rejected hunks) | ||
@@ -109,12 +109,15 @@ exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "**.ipynb_checkpoints"] | ||
# | ||
html_theme = "sphinx_book_theme" | ||
html_static_path = ["_static"] | ||
+html_css_files = ["css/custom.css"] | ||
+ | ||
html_title = project_name | ||
|
||
html_theme_options = { | ||
"repository_url": repository_url, | ||
"use_repository_button": True, | ||
"path_to_docs": "docs/", | ||
+ "navigation_with_keys": False, | ||
} | ||
|
||
pygments_style = "default" | ||
@@ -124,18 +127,3 @@ nitpick_ignore = [ | ||
# you can add an exception to this list. | ||
# ("py:class", "igraph.Graph"), | ||
] | ||
- | ||
- | ||
-def setup(app): | ||
- """App setup hook.""" | ||
- app.add_config_value( | ||
- "recommonmark_config", | ||
- { | ||
- "auto_toc_tree_section": "Contents", | ||
- "enable_auto_toc_tree": True, | ||
- "enable_math": True, | ||
- "enable_inline_math": False, | ||
- "enable_eval_rst": True, | ||
- }, | ||
- True, | ||
- ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
diff a/pyproject.toml b/pyproject.toml (rejected hunks) | ||
@@ -26,7 +26,6 @@ dependencies = [ | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
- # CLI for bumping the version number | ||
"pre-commit", | ||
"twine>=4.0.2" | ||
] | ||
@@ -42,10 +41,11 @@ doc = [ | ||
"ipykernel", | ||
"ipython", | ||
"sphinx-copybutton", | ||
+ "pandas", | ||
] | ||
test = [ | ||
"pytest", | ||
- "pytest-cov", | ||
+ "coverage", | ||
] | ||
|
||
[tool.coverage.run] |