diff --git a/docs/conf.py b/docs/conf.py index ad7269e..1417a93 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/docs/developer_docs.rst b/docs/developer_docs.rst index 27a967c..ed8bab1 100644 --- a/docs/developer_docs.rst +++ b/docs/developer_docs.rst @@ -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 @@ -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 --------------------------- diff --git a/setup.cfg b/setup.cfg index 33a6aae..311e720 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0 +current_version = 0.9.1 tag = True tag_name = v{new_version} diff --git a/setup.py b/setup.py index 545b413..2e05f99 100644 --- a/setup.py +++ b/setup.py @@ -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'] @@ -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,