File tree 2 files changed +23
-39
lines changed
2 files changed +23
-39
lines changed Original file line number Diff line number Diff line change 22
22
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
23
23
#
24
24
25
- __version__ = "0.10.0.dev0 "
25
+ __version__ = "0.10.0"
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.10.0.dev0
2
+ current_version = 0.10.0
3
3
tag = False
4
4
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
5
5
serialize =
@@ -30,46 +30,30 @@ filterwarnings =
30
30
ignore:the matrix subclass:PendingDeprecationWarning
31
31
32
32
[flake8]
33
- # max line length for black
34
33
max-line-length = 88
35
34
target-version = [' py37' ]
36
- # Default flake8 3.5 ignored flags
37
- ignore =
38
- # check ignored by default in flake8. Meaning unclear.
39
- E24,
40
- # continuation line under-indented
41
- E121,
42
- # closing bracket does not match indentation
43
- E123,
44
- # continuation line over-indented for hanging indent
45
- E126,
46
- # space before : (needed for how black formats slicing)
47
- E203,
48
- # missing whitespace around arithmetic operator
49
- E226,
50
- # multiple statements on one line (def)
51
- E704,
52
- # do not assign a lambda expression, use a def
53
- E731,
54
- # do not use variables named 'l', 'O', or 'I'
55
- E741,
56
- # line break before binary operator
57
- W503,
58
- # line break after binary operator
59
- W504
60
- exclude =
61
- .git,
62
- __pycache__,
63
- dist,
64
- doc/_build,
65
- doc/auto_examples,
66
- build,
67
-
68
- # It's fine not to put the import at the top of the file in the examples
69
- # folder.
35
+ ignore =
36
+ E24,
37
+ E121,
38
+ E123,
39
+ E126,
40
+ E203,
41
+ E226,
42
+ E704,
43
+ E731,
44
+ E741,
45
+ W503,
46
+ W504
47
+ exclude =
48
+ .git,
49
+ __pycache__,
50
+ dist,
51
+ doc/_build,
52
+ doc/auto_examples,
53
+ build,
70
54
per-file-ignores =
71
- examples/*: E402
72
- doc/conf.py: E402
55
+ examples/*: E402
56
+ doc/conf.py: E402
73
57
74
58
[mypy]
75
59
ignore_missing_imports = True
You can’t perform that action at this time.
0 commit comments