Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.9.0'
version = u'0.9.1'
# The full version, including alpha/beta/rc tags.
release = u'0.9.0'
release = u'0.9.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
17 changes: 1 addition & 16 deletions docs/developer_docs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ Release Checklist

* Check tests are passing (run_local_tests.sh)
* Update version info (see `Update Version Info`_)
* Build and publish PyPI package (see `Build PyPI package`_)
* Check PyPI page for obvious errors
* ``git tag`` with version number
* push tag to GitHub `git push origin tag vx.x.x`
* Check read the docs page

Update Version Info
Expand All @@ -54,19 +52,6 @@ following example the version is being updated for a patch.
bumpversion patch setup.py


Build PyPI package
------------------

Update version information in setup.py.

To upload to PyPI:

.. code-block::

python3 setup.py bdist_wheel sdist
twine upload dist/*


Test Build of Documentation
---------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.0
current_version = 0.9.1
tag = True
tag_name = v{new_version}

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

here = path.abspath(path.dirname(__file__))

required_packages = ['PyGObject']
required_packages = ['PyGObject<3.52.0']
extras_rel = ['bumpversion', 'twine']
extras_doc = ['sphinx', 'sphinx_rtd_theme']
extras_test = ['coverage', 'pycodestyle', 'python-dbusmock']
Expand All @@ -29,7 +29,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='0.9.0',
version='0.9.1',

description='Python library for Bluetooth Low Energy (BLE) on Linux',
long_description=long_description,
Expand Down