Things to remember when making a new release of pandas-charm.
Changes should be made to some branch other than master (a pull request should then be created before making the release).
Make desirable changes to the code.
Check coding style against some of the conventions in PEP8:
$ pycodestyle *.py
Run tests and report coverage:
$ pytest -v test_pandascharm.py $ coverage run -m pytest test_pandascharm.py $ coverage report -m pandascharm.py
Update the documentation in
README.rst
.Update
CHANGELOG.rst
and add a release date.Update the release (version) number in
setup.py
andpandascharm.py
. Use Semantic Versioning.Create pull request(s) with changes for the new release.
Create distributions and upload the files to PyPI with twine.
$ python setup.py sdist bdist_wheel --universal $ twine upload dist/*
Create the new release in GitHub.