Skip to content

Commit 7adb77e

Browse files
committed
added rever
1 parent b8e098c commit 7adb77e

File tree

5 files changed

+59
-0
lines changed

5 files changed

+59
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,6 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
131+
# Rever
132+
rever/

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
==========================
2+
mitarspysigproc Change Log
3+
==========================
4+
5+
.. current developments

news/TEMPLATE.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
**Added:**
2+
3+
* <news item>
4+
5+
**Changed:**
6+
7+
* <news item>
8+
9+
**Deprecated:**
10+
11+
* <news item>
12+
13+
**Removed:**
14+
15+
* <news item>
16+
17+
**Fixed:**
18+
19+
* <news item>
20+
21+
**Security:**
22+
23+
* <news item>

recipes/conda/meta.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,13 @@ requirements:
1717
- setuptools
1818
- numpy >=1.20
1919
- scipy
20+
- matplotlib
2021

2122
run:
2223
- python
2324
- numpy
2425
- scipy
26+
- matplotlib
2527
test:
2628
imports:
2729
- mitarspysigproc

rever.xsh

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
$PROJECT = 'mitarspysigproc'
2+
$ACTIVITIES = [
3+
'version_bump', # Changes the version number in various source files (setup.py, __init__.py, etc)
4+
'changelog', # Uses files in the news folder to create a changelog for release
5+
'tag', # Creates a tag for the new version number
6+
'push_tag', # Pushes the tag up to the $TAG_REMOTE
7+
#'pypi', # Sends the package to pypi
8+
#'conda_forge', # Creates a PR into your package's feedstock
9+
#'ghrelease' # Creates a Github release entry for the new tag
10+
]
11+
$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' "),
14+
('recipes/conda/meta.yaml', r'version:\s*', "version: $VERSION"),
15+
('recipes/conda/meta.yaml', r'git_rev:\s*', "git_rev: $VERSION"),
16+
]
17+
18+
$CHANGELOG_FILENAME = 'CHANGELOG.rst' # Filename for the changelog
19+
$CHANGELOG_TEMPLATE = 'TEMPLATE.rst' # Filename for the news template
20+
21+
$PROJECT = "mitarspysigproc"
22+
$WEBSITE_URL = "https://github.com/MIT-Adaptive-Radio-Science/sigprocpython"
23+
$GITHUB_ORG = "MIT-Adaptive-Radio-Science"
24+
$GITHUB_REPO = "sigprocpython"
25+
$PYPI_NAME = "mitarspysigproc"
26+
$PYPI_RC = '~/.pypirc'

0 commit comments

Comments
 (0)