Skip to content

Commit 5aad502

Browse files
committed
Bump version: 0.3.1.dev0 → 0.4.0.dev0
1 parent b2b2005 commit 5aad502

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

deepecho/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = 'DataCebo, Inc.'
44
__email__ = 'info@sdv.dev'
5-
__version__ = '0.3.1.dev0'
5+
__version__ = '0.4.0.dev0'
66
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
77

88
from deepecho.demo import load_demo

setup.cfg

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.1.dev0
2+
current_version = 0.4.0.dev0
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?
@@ -31,18 +31,17 @@ universal = 1
3131
max-line-length = 99
3232
exclude = docs, .tox, .git, __pycache__, .ipynb_checkpoints
3333
docstring-convetion = google
34-
extend-ignore =
35-
SFS3, # String formating using f-string
36-
VNE001, # Single letter variable names are not allowed.
37-
D107, # Missing docstring in __init__
38-
D417 # Missing argument descriptions in the docstring, this is a bug from pydocstyle: https://github.com/PyCQA/pydocstyle/issues/449
39-
40-
ignore-names =
41-
X,
42-
C,
43-
X_padded,
44-
Y,
45-
Y_padded
34+
extend-ignore =
35+
SFS3, # String formating using f-string
36+
VNE001, # Single letter variable names are not allowed.
37+
D107, # Missing docstring in __init__
38+
D417 # Missing argument descriptions in the docstring, this is a bug from pydocstyle: https://github.com/PyCQA/pydocstyle/issues/449
39+
ignore-names =
40+
X,
41+
C,
42+
X_padded,
43+
Y,
44+
Y_padded
4645

4746
[isort]
4847
include_trailing_comment = True

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,6 @@
110110
test_suite='tests',
111111
tests_require=tests_require,
112112
url='https://github.com/sdv-dev/DeepEcho',
113-
version='0.3.1.dev0',
113+
version='0.4.0.dev0',
114114
zip_safe=False,
115115
)

0 commit comments

Comments
 (0)