-
-
Notifications
You must be signed in to change notification settings - Fork 340
Versioning Releases wiith Rever #1186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,3 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
env/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
coverage.xml | ||
*,cover | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
||
# PyCharm | ||
.idea | ||
|
||
# Jupyter | ||
.ipynb_checkpoints/ | ||
|
||
# setuptools-scm | ||
zarr/version.py | ||
|
||
# emacs | ||
*~ | ||
|
||
# test data | ||
#*.zarr | ||
#*.zip | ||
#example* | ||
#doesnotexist | ||
#test_sync* | ||
data/* | ||
# Rever | ||
rever/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
$PROJECT = 'zarr' | ||
|
||
$ACTIVITIES = ['version_bump'] | ||
|
||
$VERSION_BUMP_PATTERNS = [ # These note where/how to find the version numbers | ||
('zarr/version.py', r'__version__\s*=.*', "__version__ = '$VERSION'"), | ||
('setup.py', r'version\s*=.*,', "version='$VERSION',") | ||
] | ||
Comment on lines
+5
to
+8
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm, is this manually bumping Zarr's version? Remember, Zarr uses VCS to generate versions. This means that -
TL;DR: We should not be manually bumping Zarr's version. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. thanks for the review. |
||
|
||
|
||
|
||
$GITHUB_ORG = 'zarr' # Github org for Github releases and conda-forge | ||
$GITHUB_REPO = 'zarr-python' # Github repo for Github releases and conda-forge |
Uh oh!
There was an error while loading. Please reload this page.