Skip to content

Commit 30c1f28

Browse files
committed
fixed reverfile
1 parent 0729f5a commit 30c1f28

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

rever.xsh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ $ACTIVITIES = [
99
#'ghrelease' # Creates a Github release entry for the new tag
1010
]
1111
$VERSION_BUMP_PATTERNS = [ ('setup.py', 'version\s*=.*,', "version='$VERSION',"),
12-
('docs/source/conf.py', 'release\s*=*.*,', "release = '$VERSION' "),
13-
('docs/source/conf.py', 'version\s*=*.*,', "version = '$VERSION' "),
12+
('doc/source/conf.py', 'release\s*=*.*,', "release = '$VERSION' "),
13+
('doc/source/conf.py', 'version\s*=*.*,', "version = '$VERSION' "),
1414
('recipes/conda/meta.yaml', r'version:\s*', "version: $VERSION"),
1515
('recipes/conda/meta.yaml', r'git_rev:\s*', "git_rev: $VERSION"),
1616
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
description="Processing and Plotting of ",
1818
author="John Swoboda",
1919
url="https://github.com/MIT-Adaptive-Radio-Science/sigprocpython",
20-
version=versioneer.get_version(),
20+
version='1.0.0',
2121
cmdclass=versioneer.get_cmdclass(),
2222
install_requires=req,
2323
python_requires=">=3.0",

0 commit comments

Comments
 (0)