Making a Mathics3 “Hello World” Module Release¶
Note: This package depends on ``mathics-core``, so if that needs a release too, do that before this.
$ PACKAGE="pymathics-hello"
$ root_dir="pymathics/hello"
# Edit ${root_dir}/version.py
$ source ${root_dir}/version.py # to set in POSIX shell
$ echo $__version__
Create a new branch¶
$ git checkout -b release-$__version__
$ git commit -m"Get ready for release $__version__" .
Workflows update?¶
Check .github/workflows/*.yml
to make see if we are using
github versions for testing. If so adjust.
Update Changes¶
$ make ChangeLog
Update NEWS.md
from ChangeLog
$ make check
$ git commit --amend .
$ git push -u origin HEAD # get CI testing going early
Check Python versions¶
$ ./admin-tools/check-versions.sh
Merge release¶
Go to github and merge release into master.
Then… .. code::
$ git checkout main
$ git pull
Check package from github¶
TODO: turn this into a script in admin-tools
$ [[ ! -d /tmp/gittest ]] && mkdir /tmp/gittest; pushd /tmp/gittest
$ pyenv local 3.9.18 # Use a version that is not the most recent
$ pip install -e git+https://github.com/Mathics3/${PACKAGE}.git#egg=${PACKAGE}
$ mathics -e 'LoadModule["pymathics.hello"]; Hello["rocky"]'
$ pip uninstall ${PACKAGE}
$ popd
Make packages and check¶
$ bash ./admin-tools/make-dist.sh
$ twine check dist/*-$__version__*
Go over what is in dist and remove unnecessary files in dist
.
Release on Github¶
Go to https://github.com/Mathics3/pymathics-hello/releases/new
Now check the tagged release. (Checking the untagged release was previously done).
TODO: turn this into a script in admin-tools
$ git pull # to pull down new tag
$ pushd /tmp/gittest
$ pip install -e git+https://github.com/Mathics3/${PACKAGE}.git@${__version__}#egg=${PACKAGE}[full]
$ mathics -e 'LoadModule["pymathics.hello"]; Hello["rocky"]'
$ pip uninstall ${PACKAGE}
$ popd
Upload the release to PyPI¶
Upload it to PyPI with twine
:
$ twine upload --verbose dist/*-${__version__}*{whl,gz}
Move dist files to save¶
$ [[ ! -d dist/uploaded ]] || mkdir dist/uploaded
$ mv -v dist/$PACKAGE*{whl,gz} dist/uploaded/
Post-Release¶
Add 1 to release number of version in
${PACKAGE}/version.py
; also append “dev0”.