Skip to content

Commit 0ce3dff

Browse files
committed
1 parent a59c5c9 commit 0ce3dff

5 files changed

Lines changed: 1071 additions & 19 deletions

.pre-commit-config.yaml

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/mwouts/jupytext
3-
rev: "v1.16.4b"
3+
rev: "v1.17.3"
44
hooks:
55
- id: jupytext
66
entry: jupytext
@@ -15,17 +15,17 @@ repos:
1515
- --warn-only
1616
exclude: '.*\.md$' # excludes md files
1717
- repo: https://github.com/PyCQA/docformatter
18-
rev: "eb1df347edd128b30cd3368dddc3aa65edcfac38"
18+
rev: "v1.7.7"
1919
hooks:
2020
- id: docformatter
2121
args: [--in-place, --wrap-descriptions=90, --style=google]
2222
- repo: https://github.com/psf/black.git
23-
rev: "24.10.0"
23+
rev: "25.1.0"
2424
hooks:
2525
- id: black
2626

2727
- repo: https://github.com/nbQA-dev/nbQA
28-
rev: 1.9.0
28+
rev: 1.9.1
2929
hooks:
3030
- id: nbqa-black
3131
name: nbqa-black
@@ -36,12 +36,12 @@ repos:
3636
types_or: [jupyter, markdown]
3737
additional_dependencies: [black]
3838
- repo: https://github.com/asottile/pyupgrade
39-
rev: "v3.19.0"
39+
rev: "v3.20.0"
4040
hooks:
4141
- id: pyupgrade
4242
args: [--py39-plus]
4343
- repo: https://github.com/pycqa/isort
44-
rev: "5.13.2"
44+
rev: "6.0.1"
4545
hooks:
4646
- id: isort
4747
entry: isort
@@ -50,7 +50,7 @@ repos:
5050
- --float-to-top
5151

5252
- repo: https://github.com/nbQA-dev/nbQA
53-
rev: "1.9.0"
53+
rev: "1.9.1"
5454
hooks:
5555
- id: nbqa
5656
entry: nbqa blacken-docs
@@ -60,7 +60,7 @@ repos:
6060
args:
6161
- --nbqa-md
6262
- repo: https://github.com/nbQA-dev/nbQA
63-
rev: 1.9.0
63+
rev: 1.9.1
6464
hooks:
6565
- id: nbqa-pyupgrade
6666
name: nbqa-pyupgrade
@@ -83,7 +83,7 @@ repos:
8383
- --float-to-top
8484

8585
- repo: https://github.com/codespell-project/codespell
86-
rev: v2.3.0
86+
rev: v2.4.1
8787
hooks:
8888
- id: codespell
8989
additional_dependencies:
@@ -93,7 +93,7 @@ repos:
9393
- --ignore-regex=[A-Za-z0-9+/]{100,}
9494
- --skip=*.js,*.html,*.css,*.svg",*.json,*.png,*.jpg,*.yml,*.yaml
9595
- repo: https://github.com/nbQA-dev/nbQA
96-
rev: 1.9.0
96+
rev: 1.9.1
9797
hooks:
9898
- id: nbqa-flake8
9999
args:
@@ -111,7 +111,7 @@ repos:
111111
- flake8-functions-names
112112

113113
- repo: https://github.com/PyCQA/flake8
114-
rev: 7.1.1
114+
rev: 7.3.0
115115
hooks:
116116
- id: flake8
117117
args:
@@ -123,7 +123,7 @@ repos:
123123
- flake8-functions-names
124124

125125
- repo: https://github.com/nbQA-dev/nbQA
126-
rev: 1.9.0
126+
rev: 1.9.1
127127
hooks:
128128
- id: nbqa-mypy
129129
name: nbqa-mypy
@@ -168,7 +168,7 @@ repos:
168168

169169

170170
- repo: https://github.com/pre-commit/mirrors-mypy
171-
rev: v1.13.0
171+
rev: v1.18.1
172172
hooks:
173173
- id: mypy
174174
args:
@@ -206,7 +206,7 @@ repos:
206206
- types-setuptools
207207

208208
- repo: https://github.com/nbQA-dev/nbQA
209-
rev: 1.9.0
209+
rev: 1.9.1
210210
hooks:
211211
- id: nbqa-pylint
212212
name: nbqa-pylint
@@ -224,7 +224,7 @@ repos:
224224

225225

226226
- repo: https://github.com/pylint-dev/pylint
227-
rev: "v3.3.1"
227+
rev: "v3.3.8"
228228
hooks:
229229
- id: pylint
230230
name: pylint
@@ -241,7 +241,7 @@ repos:
241241
additional_dependencies: [pylint]
242242

243243
- repo: https://github.com/nbQA-dev/nbQA
244-
rev: 1.9.0
244+
rev: 1.9.1
245245
hooks:
246246
- id: nbqa-pydocstyle
247247
name: nbqa-pydocstyle
@@ -251,8 +251,6 @@ repos:
251251
require_serial: true
252252
types_or: [jupyter, markdown]
253253
additional_dependencies: [pydocstyle]
254-
env:
255-
PYTHONIOENCODING: utf-8
256254

257255
# - repo: https://github.com/christophmeissner/pytest-pre-commit
258256
# rev: 1.0.0
@@ -269,7 +267,7 @@ repos:
269267
# additional_dependencies: [pytest-html]
270268

271269
- repo: https://github.com/codespell-project/codespell
272-
rev: v2.3.0
270+
rev: v2.4.1
273271
hooks:
274272
- id: codespell
275273
additional_dependencies:

python/made-easy/fundamentals_of_programming_and_intro_to_ds.ipynb

Lines changed: 309 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)