Skip to content

Commit 7fbeea5

Browse files
committed
drop python 3.8
1 parent 1dc2826 commit 7fbeea5

File tree

6 files changed

+388
-390
lines changed

6 files changed

+388
-390
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,9 @@ repos:
1414
rev: v4.4.0
1515
hooks:
1616
- id: check-yaml
17+
- repo: https://github.com/charliermarsh/ruff-pre-commit
18+
# Ruff version.
19+
rev: 'v0.0.245'
20+
hooks:
21+
- id: ruff
22+
args: [--fix, --exit-non-zero-on-fix]

docs/conf.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717

1818
# -- Project information -----------------------------------------------------
1919

20-
project = 'xarray-multiscale'
21-
copyright = '2022, Davis Bennett'
22-
author = 'Davis Bennett'
20+
project = "xarray-multiscale"
21+
copyright = "2022, Davis Bennett"
22+
author = "Davis Bennett"
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.3.1'
25+
release = "0.3.1"
2626

2727

2828
# -- General configuration ---------------------------------------------------
@@ -32,17 +32,17 @@
3232
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3333
# ones.
3434
extensions = [
35-
'sphinx.ext.autodoc',
36-
'sphinx.ext.autosummary',
37-
'sphinx.ext.viewcode',
38-
'sphinx.ext.intersphinx',
39-
'numpydoc',
40-
'sphinx_issues',
35+
"sphinx.ext.autodoc",
36+
"sphinx.ext.autosummary",
37+
"sphinx.ext.viewcode",
38+
"sphinx.ext.intersphinx",
39+
"numpydoc",
40+
"sphinx_issues",
4141
]
4242

4343

4444
# Add any paths that contain templates here, relative to this directory.
45-
templates_path = ['_templates']
45+
templates_path = ["_templates"]
4646

4747
# List of patterns, relative to source directory, that match files and
4848
# directories to ignore when looking for source files.
@@ -55,9 +55,9 @@
5555
# The theme to use for HTML and HTML Help pages. See the documentation for
5656
# a list of builtin themes.
5757
#
58-
html_theme = 'sphinx_rtd_theme'
58+
html_theme = "sphinx_rtd_theme"
5959

6060
# Add any paths that contain custom static files (such as style sheets) here,
6161
# relative to this directory. They are copied after the builtin static files,
6262
# so a file named "default.css" will overwrite the builtin "default.css".
63-
html_static_path = ['_static']
63+
html_static_path = ["_static"]

0 commit comments

Comments
 (0)