You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 10, 2018. It is now read-only.
@andersy005@kmpaul
Can you please make a release so we can officially install this on Cheyenne? CISL can't install unreleased software. If you haven't worked with releases with git, it's simply:
git tag -n1 # show existing releases, with message
git tag v0.3 -m "release v0.3” # the message is shown in the previous log and somewhere else
git push --follow-tags # otherwise tags aren’t pushed
If you make a mistake and want to delete a release:
git tag -d v0.3.1 # delete tag (not pushed upstream, otherwise need also the following)
git push origin :refs/tags/v0.3.1 # after previous, only if pushed -- very bad thing to do, but if you really must you can
The text was updated successfully, but these errors were encountered:
@davidedelvento@kpaul
The current version is not stable yet. That's why I haven't made any release yet. I am hoping to make the first release once I have a working module for the bias correction use case..
--
*Kevin Paul, PhD*
Project Scientist, Head of I/O & Workflow Applications (IOWA)
The National Center for Atmospheric Research
Computational and Information Systems Laboratory
1850 Table Mesa Dr
Boulder, CO 80305
Phone: (303) 497-2441
Office: ML460B
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
@andersy005 @kmpaul
Can you please make a release so we can officially install this on Cheyenne? CISL can't install unreleased software. If you haven't worked with releases with git, it's simply:
If you make a mistake and want to delete a release:
The text was updated successfully, but these errors were encountered: