Skip to content

Commit a4b2731

Browse files
authored
Release v0.9.1 (#425)
* Limit version of PyGObject installed from pip the release notes say that they moved to girepository-2.0 in version 3.52.0 which isn't in most production versions of Linux * Bump version to 0.9.1 * Update release checklist
1 parent 90f38a0 commit a4b2731

File tree

4 files changed

+6
-21
lines changed

4 files changed

+6
-21
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@
7373
# built documents.
7474
#
7575
# The short X.Y version.
76-
version = u'0.9.0'
76+
version = u'0.9.1'
7777
# The full version, including alpha/beta/rc tags.
78-
release = u'0.9.0'
78+
release = u'0.9.1'
7979

8080
# The language for content autogenerated by Sphinx. Refer to documentation
8181
# for a list of supported languages.

docs/developer_docs.rst

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ Release Checklist
3333

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

4139
Update Version Info
@@ -54,19 +52,6 @@ following example the version is being updated for a patch.
5452
bumpversion patch setup.py
5553
5654
57-
Build PyPI package
58-
------------------
59-
60-
Update version information in setup.py.
61-
62-
To upload to PyPI:
63-
64-
.. code-block::
65-
66-
python3 setup.py bdist_wheel sdist
67-
twine upload dist/*
68-
69-
7055
Test Build of Documentation
7156
---------------------------
7257

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.9.0
2+
current_version = 0.9.1
33
tag = True
44
tag_name = v{new_version}
55

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

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

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

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

0 commit comments

Comments
 (0)