-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
31 lines (24 loc) · 715 Bytes
/
Copy pathsetup.cfg
File metadata and controls
31 lines (24 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[bumpversion]
commit = True
tag = False
message = Bump version: {current_version} → {new_version} [ci skip]
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(a(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}a{build}
current_version = 0.0.0a9
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"
[bumpversion:file:datastorm/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[flake8]
max-line-length = 120
[mypy]
python_version = 3.6
strict_optional = True
no_implicit_optional = True
[mypy-google.cloud]
ignore_missing_imports = True
[mypy-google.cloud.datastore]
ignore_missing_imports = True