Skip to content

Commit c108327

Browse files
committed
Address comments
1 parent bfb4e01 commit c108327

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,29 @@ repos:
1313

1414
# Can run individually with `pre-commit run black --all-files`
1515
- repo: https://github.com/psf/black
16-
rev: 24.10.0
16+
rev: 25.1.0
1717
hooks:
1818
- id: black
1919

2020
# Can run individually with `pre-commit run isort --all-files`
2121
- repo: https://github.com/PyCQA/isort
22-
rev: 5.13.2
22+
rev: 6.0.1
2323
hooks:
2424
- id: isort
2525

2626
# Can run individually with `pre-commit run flake8 --all-files`
2727
# Need to use flake8 GitHub mirror due to CentOS git issue with GitLab
2828
# https://github.com/pre-commit/pre-commit/issues/1206
2929
- repo: https://github.com/pycqa/flake8
30-
rev: 7.1.1
30+
rev: 7.3.0
3131
hooks:
3232
- id: flake8
3333
args: ["--config=setup.cfg"]
3434
additional_dependencies: [flake8-isort==6.1.1]
3535

3636
# Can run individually with `pre-commit run mypy --all-files`
3737
- repo: https://github.com/pre-commit/mirrors-mypy
38-
rev: v1.11.2
38+
rev: v1.18.2
3939
hooks:
4040
- id: mypy
4141
args: ["--config=setup.cfg"]

conda/dev.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,11 @@ dependencies:
3030
# Quality Assurance Tools
3131
# =======================
3232
# If versions are updated, also update 'rev' in `.pre-commit-config.yaml`
33-
- black >=24.0.0
34-
- flake8 >=7.0.0
35-
# This line also implicitly installs isort
36-
- flake8-isort >=6.0.0
37-
- mypy >=1.11.0
38-
- pre-commit >=4.0.0
33+
- black ==25.1.0
34+
- flake8 ==7.3.0
35+
- isort ==6.0.1
36+
- mypy ==1.18.2
37+
- pre-commit ==4.3.0
3938
- tbump >=6.9.0
4039
# Developer Tools
4140
# =======================

0 commit comments

Comments
 (0)