Skip to content
Snippets Groups Projects
Commit cd70947e authored by Philip Elson's avatar Philip Elson :snake:
Browse files

Merge branch 'maint/repo_top_level_files' into 'master'

Tidy up the repo after the most recent release.

See merge request !60
parents 859afc1c 8093702f
No related branches found
No related tags found
1 merge request!60Tidy up the repo after the most recent release.
Pipeline #2310544 passed
......@@ -164,3 +164,7 @@ Changelog
* A warning is raised and the rbac_dialog functionality is disabled if
Tkinter is not available from the Python in which PyJapc is installed.
**2020-01-18**
* Please refer to the GitLab releases page for details of changes to PyJapc.
https://gitlab.cern.ch/scripting-tools/pyjapc/-/releases
#!/bin/bash
set -euo pipefail; IFS=$'\n\t'
NAME=$( python setup.py --name )
VER=$( python setup.py --version )
echo "========================================================================"
echo "Tagging $NAME v$VER"
echo "========================================================================"
git tag v$VER
git push origin v$VER
echo "========================================================================"
echo "Releasing $NAME v$VER on PyPI"
echo "========================================================================"
python setup.py sdist
twine upload dist/*
rm -r dist/ *.egg-info
[build_sphinx]
source-dir = docs
build-dir = docs/build
all_files = 1
[deploy_sphinx]
source-dir = docs/build/html
dest-dir = /user/bdisoft/public_html/pyjapc
chmod-files = 0644
chmod-dirs = 0775
[pep8]
max-line-length=119
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment