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
|
#!/bin/bash -e
# First, do
# - Check spelling with
# codespell . --skip '*.cif' -L assertIn
# - Update AuditConformDumper to match latest MA dictionary if necessary
# - Run util/validate-outputs.py to make sure all example outputs validate
# (cd util; PYTHONPATH=.. python3 ./validate-outputs.py)
# - Run util/check-db-entries.py to check against some real archive structures
# (cd util; PYTHONPATH=.. python3 check-db-entries.py)
# - If we need a newer python-ihm, update the version requirement in
# requirements.txt, setup.py, pyproject.toml, util/python-modelcif.spec,
# and README.md.
# - Update ChangeLog.rst and util/python-modelcif.spec with the release number
# - Update release number in modelcif/__init__.py, setup.py and pyproject.toml
# - Commit, tag, and push
# - Make release on GitHub
# - Upload the release tarball from
# https://github.com/ihmwg/python-modelcif/releases to Zenodo as a new release
# - Make sure there are no extraneous .py files (setup.py will include them
# in the pypi package)
VERSION=$(python3 setup.py --version)
python3 setup.py sdist
echo "Now use 'twine upload dist/modelcif-${VERSION}.tar.gz' to publish the release on PyPi"
echo "Then, update the conda-forge and COPR packages to match."
echo "For COPR, use dist/modelcif-${VERSION}.tar.gz together with util/python-modelcif.spec"
echo "For conda-forge, make sure the correct version of python-ihm is required"
|