-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrever.xsh
More file actions
26 lines (24 loc) · 1.3 KB
/
rever.xsh
File metadata and controls
26 lines (24 loc) · 1.3 KB
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
$PROJECT = 'mitarspysigproc'
$ACTIVITIES = [
'version_bump', # Changes the version number in various source files (setup.py, __init__.py, etc)
'changelog', # Uses files in the news folder to create a changelog for release
'tag', # Creates a tag for the new version number
'push_tag', # Pushes the tag up to the $TAG_REMOTE
#'pypi', # Sends the package to pypi
#'conda_forge', # Creates a PR into your package's feedstock
#'ghrelease' # Creates a Github release entry for the new tag
]
$VERSION_BUMP_PATTERNS = [ ('setup.py', 'version\s*=.*,', "version='$VERSION',"),
('doc/source/conf.py', 'release\s*=*.*,', "release = '$VERSION' "),
('doc/source/conf.py', 'version\s*=*.*,', "version = '$VERSION' "),
('recipes/conda/meta.yaml', r'version:\s*', "version: $VERSION"),
('recipes/conda/meta.yaml', r'git_rev:\s*', "git_rev: $VERSION"),
]
$CHANGELOG_FILENAME = 'CHANGELOG.rst' # Filename for the changelog
$CHANGELOG_TEMPLATE = 'TEMPLATE.rst' # Filename for the news template
$PROJECT = "mitarspysigproc"
$WEBSITE_URL = "https://github.com/MIT-Adaptive-Radio-Science/sigprocpython"
$GITHUB_ORG = "MIT-Adaptive-Radio-Science"
$GITHUB_REPO = "sigprocpython"
$PYPI_NAME = "mitarspysigproc"
$PYPI_RC = '~/.pypirc'