File tree 2 files changed +15
-19
lines changed
2 files changed +15
-19
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ requires = [
6
6
]
7
7
8
8
[tool .setuptools_scm ]
9
- fallback_version = " 999 "
9
+ fallback_version = " 9999 "
10
10
11
11
[tool .coverage .run ]
12
12
omit = [
@@ -64,39 +64,35 @@ module = [
64
64
" sparse.*" ,
65
65
" toolz.*" ,
66
66
" zarr.*" ,
67
- " numpy.exceptions.*" , # remove once support for `numpy<2.0` has been dropped
67
+ " numpy.exceptions.*" , # remove once support for `numpy<2.0` has been dropped
68
68
]
69
69
70
70
[[tool .mypy .overrides ]]
71
71
ignore_errors = true
72
72
module = []
73
73
74
74
[tool .ruff ]
75
- target-version = " py39"
76
75
builtins = [" ellipsis" ]
77
76
exclude = [
78
- " .eggs" ,
79
- " doc" ,
80
- " _typed_ops.pyi" ,
77
+ " .eggs" ,
78
+ " doc" ,
79
+ " _typed_ops.pyi" ,
81
80
]
81
+ target-version = " py39"
82
82
# E402: module level import not at top of file
83
83
# E501: line too long - let black worry about that
84
84
# E731: do not assign a lambda expression, use a def
85
85
ignore = [
86
- " E402" ,
87
- " E501" ,
88
- " E731" ,
86
+ " E402" ,
87
+ " E501" ,
88
+ " E731" ,
89
89
]
90
90
select = [
91
- # Pyflakes
92
- " F" ,
93
- # Pycodestyle
94
- " E" ,
95
- " W" ,
96
- # isort
97
- " I" ,
98
- # Pyupgrade
99
- " UP" ,
91
+ " F" , # Pyflakes
92
+ " E" , # Pycodestyle
93
+ " W" , # isort
94
+ " I" , # Pyupgrade
95
+ " UP" ,
100
96
]
101
97
102
98
[tool .ruff .isort ]
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
from setuptools import setup
3
3
4
- setup (use_scm_version = {"fallback_version" : "999 " })
4
+ setup (use_scm_version = {"fallback_version" : "9999 " })
You can’t perform that action at this time.
0 commit comments