Skip to content

Commit 643b0df

Browse files
Merge branch 'master' into dependabot/github_actions/all-22f76065e5
2 parents 3464019 + 599d694 commit 643b0df

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

.pre-commit-config.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
repos:
99
- repo: https://github.com/astral-sh/ruff-pre-commit
10-
rev: v0.9.3
10+
rev: v0.11.0
1111
hooks:
1212
- id: ruff
1313
args:
@@ -25,7 +25,7 @@ repos:
2525
# - --install-types
2626
# - --non-interactive
2727
- repo: https://github.com/codespell-project/codespell
28-
rev: v2.4.0
28+
rev: v2.4.1
2929
hooks:
3030
- id: codespell
3131
additional_dependencies: [tomli]
@@ -68,12 +68,12 @@ repos:
6868
- id: rst-directive-colons
6969
- id: text-unicode-replacement-char
7070
- repo: https://github.com/PyCQA/isort # TODO: remove as soon as ruff is stable
71-
rev: 5.13.2
71+
rev: 6.0.1
7272
hooks:
7373
- id: isort
7474
args: [--profile=black]
7575
- repo: https://github.com/PyCQA/bandit
76-
rev: 1.8.2
76+
rev: 1.8.3
7777
hooks:
7878
- id: bandit
7979
exclude: "^tests/.*|examples/.*"

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ build:
2727
.PHONY: dev
2828
dev:
2929
@git lfs install
30-
$(PYTHON) -m pip install -e ".[dev,test,jupyter,examples]"
30+
$(PYTHON) -m pip install -e ".[dev,test,jupyter,examples]" -r doc/requirements.txt
3131

3232
## install Install the package
3333
##

doc/requirements.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
cloup
1+
click~=8.1
2+
cloup~=3.0
23
ipython
34
nbsphinx
45
netCDF4>=1.6.1
56
numpy
67
setuptools_scm
7-
sphinx
8+
sphinx<8.2.0 # doesn't work with nbsphinx
89
sphinx-rtd-theme
910
xarray>=2022.11.0

pyproject.toml

+2-6
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ dependencies = [
2626
"xarray>=2022.11.0",
2727
"netCDF4>=1.6.1",
2828
"numpy",
29-
"click",
30-
"cloup",
29+
"click~=8.1",
30+
"cloup~=3.0",
3131
]
3232
keywords = [
3333
"climate-science",
@@ -102,10 +102,6 @@ dev = [
102102
# building
103103
"setuptools_scm",
104104
"build",
105-
# documentation
106-
"sphinx",
107-
"sphinx-rtd-theme",
108-
"nbsphinx",
109105
# linting
110106
"pylint",
111107
"flake8",

0 commit comments

Comments
 (0)