forked from gagneurlab/drop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
27 lines (21 loc) · 821 Bytes
/
setup.cfg
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
[bumpversion]
current_version = 1.3.3
commit = True
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:drop/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:drop/cli.py]
search = @click.version_option('{current_version}'
replace = @click.version_option('{new_version}'
[bumpversion:file:docs/source/conf.py]
search = release_ = '{current_version}'
replace = release_ = '{new_version}'
[bumpversion:file:docs/source/installation.rst]
search = mamba env create -f DROP_{current_version}.yaml
replace = mamba env create -f DROP_{new_version}.yaml
[bumpversion:file:README.md]
search = mamba env create -f DROP_{current_version}.yaml
replace = mamba env create -f DROP_{new_version}.yaml