-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Versioneer #2163
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
Merged
Merged
Versioneer #2163
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# reduce the number of merge conflicts | ||
doc/whats-new.rst merge=union | ||
xarray/_version.py export-subst |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,21 +7,20 @@ Time required: about an hour. | |
2. Look over whats-new.rst and the docs. Make sure "What's New" is complete | ||
(check the date!) and add a brief summary note describing the release at the | ||
top. | ||
3. Update the version in setup.py and switch to `ISRELEASED = True`. | ||
4. If you have any doubts, run the full test suite one final time! | ||
3. If you have any doubts, run the full test suite one final time! | ||
py.test | ||
5. On the master branch, commit the release in git: | ||
4. On the master branch, commit the release in git: | ||
git commit -a -m 'Release v0.X.Y' | ||
6. Tag the release: | ||
5. Tag the release: | ||
git tag -a v0.X.Y -m 'v0.X.Y' | ||
7. Build source and binary wheels for pypi: | ||
6. Build source and binary wheels for pypi: | ||
python setup.py bdist_wheel sdist | ||
8. Use twine to register and upload the release on pypi. Be careful, you can't | ||
7. Use twine to register and upload the release on pypi. Be careful, you can't | ||
take this back! | ||
twine upload dist/xarray-0.X.Y* | ||
You will need to be listed as a package owner at | ||
https://pypi.python.org/pypi/xarray for this to work. | ||
9. Push your changes to master: | ||
8. Push your changes to master: | ||
git push upstream master | ||
git push upstream --tags | ||
9. Update the stable branch (used by ReadTheDocs) and switch back to master: | ||
|
@@ -32,25 +31,22 @@ Time required: about an hour. | |
It's OK to force push to 'stable' if necessary. | ||
We also update the stable branch with `git cherrypick` for documentation | ||
only fixes that apply the current released version. | ||
10. Revert ISRELEASED in setup.py back to False. Don't change the version | ||
number: in normal development, we keep the version number in setup.py as the | ||
last released version. | ||
11. Add a section for the next release (v.X.(Y+1)) to doc/whats-new.rst. | ||
12. Commit your changes and push to master again: | ||
10. Add a section for the next release (v.X.(Y+1)) to doc/whats-new.rst. | ||
11. Commit your changes and push to master again: | ||
git commit -a -m 'Revert to dev version' | ||
git push upstream master | ||
You're done pushing to master! | ||
13. Issue the release on GitHub. Click on "Draft a new release" at | ||
12. Issue the release on GitHub. Click on "Draft a new release" at | ||
https://github.com/pydata/xarray/releases and paste in the latest from | ||
whats-new.rst. | ||
14. Update the docs. Login to https://readthedocs.org/projects/xray/versions/ | ||
13. Update the docs. Login to https://readthedocs.org/projects/xray/versions/ | ||
and switch your new release tag (at the bottom) from "Inactive" to "Active". | ||
It should now build automatically. | ||
15. Update conda-forge. Clone https://github.com/conda-forge/xarray-feedstock | ||
14. Update conda-forge. Clone https://github.com/conda-forge/xarray-feedstock | ||
and update the version number and sha256 in meta.yaml. (On OS X, you can | ||
calculate sha256 with `shasum -a 256 xarray-0.X.Y.tar.gz`). Submit a pull | ||
request (and merge it, once CI passes). | ||
16. Issue the release announcement! For bug fix releases, I usually only email | ||
15. Issue the release announcement! For bug fix releases, I usually only email | ||
[email protected]. For major/feature releases, I will email a broader | ||
list (no more than once every 3-6 months): | ||
[email protected], [email protected], | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is the one change that worries me. It is possible people were relying on the
xarray.version
module...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If they were... then they will have to fix up their code.