forked from scottprahl/miepython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease.txt
More file actions
29 lines (23 loc) · 711 Bytes
/
release.txt
File metadata and controls
29 lines (23 loc) · 711 Bytes
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
27
28
29
Releasing a new version
# versioning
# update the version in setup.py and __init__.py
git commit setup.py miepython/__init__.py -m 'update version'
git push
# update CHANGELOG.txt
git shortlog v1.3.0..HEAD
git commit CHANGELOG.txt -m 'update recent changes'
git push
# create release tag on github
git tag v1.3.0
git push origin v1.3.0
# upload source to pypi
rm -rf dist/*
python setup.py sdist
twine upload dist/*
# test the install by removing local developer version
# installing, then uninstalling, then restoring developer version
conda develop -u .
pip install miepython
pip uninstall miepython
conda develop .
# Create a new release on github to hide previous releases