https://github.com/rshk/pyql
GraphQL helpers for Python.
https://github.com/rshk/pyql
graphql graphql-subscriptions python
Last synced: 5 months ago
JSON representation
GraphQL helpers for Python.
- Host: GitHub
- URL: https://github.com/rshk/pyql
- Owner: rshk
- Created: 2018-08-24T15:52:54.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-12-21T11:04:14.000Z (over 5 years ago)
- Last Synced: 2025-10-28T05:01:06.667Z (8 months ago)
- Topics: graphql, graphql-subscriptions, python
- Language: Python
- Homepage: https://pyql-lib.readthedocs.io/en/latest/
- Size: 174 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.developers.rst
Awesome Lists containing this project
README
PyQL developer's guide
######################
Creating a release
==================
1. Update version number in ``setup.py``
2. Update version number in ``docs/conf.py``
3. Commit changes, eg::
git add setup.py docs/conf.py
git commit -m '0.2.1 ...'
4. Tag the version, eg::
git tag -a -m 'Version 0.2.1' v0.2.1
5. Push changes to GitHub::
git push
git push --tags
6. Release on PyPI::
rm -rf dist
python setup.py sdist bdist_wheel
twine upload dist/*