Skip to content

Commit e7b922b

Browse files
committed
Bump version: 0.1.0.dev0 → 0.1.0.dev1
1 parent 4bcb613 commit e7b922b

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

pygridsim/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
__author__ = 'Angela Zhao'
66
__email__ = '[email protected]'
7-
__version__ = '0.1.0.dev0'
7+
__version__ = '0.1.0.dev1'
88

99
from pygridsim.core import PyGridSim

setup.cfg

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[bumpversion]
2-
current_version = 0.1.0.dev0
2+
current_version = 0.1.0.dev1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?
6-
serialize =
6+
serialize =
77
{major}.{minor}.{patch}.{release}{candidate}
88
{major}.{minor}.{patch}
99

1010
[bumpversion:part:release]
1111
optional_value = release
1212
first_value = dev
13-
values =
13+
values =
1414
dev
1515
release
1616

@@ -30,14 +30,11 @@ universal = 1
3030
[flake8]
3131
max-line-length = 99
3232
exclude = docs, .tox, .git, __pycache__, .ipynb_checkpoints
33-
# Ignore W503 (line break before binary operator)
34-
# Line breaks should occur before the binary operator because it keeps all operators aligned.
35-
# Please discuss with the group before adding other ignores.
36-
ignore = W503
33+
ignore = W503
3734

3835
[isort]
3936
include_trailing_comma = True
40-
line_length=99
37+
line_length = 99
4138
lines_between_types = 0
4239
multi_line_output = 4
4340
not_skip = __init__.py

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,6 @@
8686
test_suite='tests',
8787
tests_require=tests_require,
8888
url='https://github.com/amzhao/PyGridSim',
89-
version='0.1.0.dev0',
89+
version='0.1.0.dev1',
9090
zip_safe=False,
9191
)

0 commit comments

Comments
 (0)