Skip to content

Commit 35cfab5

Browse files
committed
Fix bumpr config
1 parent 1e1faa4 commit 35cfab5

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

bumpr.rc

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ publish = python setup.py sdist --formats=gztar,zip register upload
66
clean =
77
python setup.py clean
88
rm -rf *egg-info build dist
9-
files = README.rst
9+
files =
10+
setup.py
11+
README.rst
12+
docs/conf.py
1013

1114
[bump]
1215
unsuffix = true

docs/conf.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,12 @@
3737
# |version| and |release|, also used in various other places throughout the
3838
# built documents.
3939
#
40-
# The short X.Y version.
41-
version = '0.0'
4240
# The full version, including alpha/beta/rc tags.
43-
release = version
41+
release = '0.0.4.dev'
42+
43+
# The short X.Y version. For now let's just make it the same.
44+
# version = '.'.join(s.split('.', 2)[:2])
45+
version = release
4446

4547
# List of patterns, relative to source directory, that match files and
4648
# directories to ignore when looking for source files.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
setup(name='pyweaving',
7-
version='0.0.2.dev',
7+
version='0.0.4.dev',
88
description='Python Weaving Tools',
99
long_description='',
1010
classifiers=[

0 commit comments

Comments
 (0)