8000 Fix list of packages in mypy pre-commit environment (#1907) · AdamWill/zarr-python@2bac074 · GitHub
[go: up one dir, main page]

< 65FA div class="position-relative header-wrapper js-header-wrapper "> Skip to content

Commit 2bac074

Browse files
authored
Fix list of packages in mypy pre-commit environment (zarr-developers#1907)
1 parent 67d521e commit 2bac074

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.pre-commit-config.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,16 @@ repos:
2727
- id: mypy
2828
files: src
2929
additional_dependencies:
30-
- types-redis
31-
- types-setuptools
32-
- pytest
33-
- numpy
30+
# Package dependencies
31+
- asciitree
32+
- crc32c
33+
- donfig
34+
- fasteners
3435
- numcodecs
36+
- numpy
37+
- typing_extensions
3538
- zstandard
39+
# Tests
40+
- pytest
41+
# Zarr v2
42+
- types-redis

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ maintainers = [
2121
{ name = "Ryan Abernathey" }
2222
]
2323
requires-python = ">=3.10"
24+
# If you add a new dependency here, please also add it to .pre-commit-config.yml
2425
dependencies = [
2526
'asciitree',
2627
'numpy>=1.24',

0 commit comments

Comments
 (0)
0