Skip to content

Commit 9bb23d5

Browse files
authored
Merge pull request #19 from echoromeo/pypi_v200
Prepare for 1.2.0 release
2 parents 12558d9 + fe7e0e2 commit 9bb23d5

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ not perform any I/O, and can safely be called from the event loop.
9696
* get_current_component_temperature - Get the current temperature from a component
9797
* get_current_zone_temperature - Get the current temperature from (the first component in) a zone
9898

99-
## Backwards compatability
99+
## Backwards compatibility
100100

101-
Synchronous wrapper methods are available for backwards compatibility, but it is recommended to
101+
Synchronous wrapper methods are available for compatibility with v1.1.2, but it is recommended to
102102
switch to the async methods. If `loop` is not provided, initializing will start the async event
103-
loop in a daemon thread, discover and connect to hub before returning as in version 1.1.
103+
loop in a daemon thread, discover and connect to hub before returning as before.
104104

105105
import time
106106
from pynobo import nobo

setup.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
# For a discussion on single-sourcing the version across setup.py and the
2929
# project code, see
3030
# https://packaging.python.org/en/latest/single_source_version.html
31-
#
32-
# pynobo: API version + serial release + alpha/beta/rc
3331
version='1.2.0',
3432
description='Nobø Hub / Nobø Energy Control TCP/IP Interface',
3533

@@ -52,8 +50,8 @@
5250

5351
# This should be your name or the name of the organization which owns the
5452
# project.
55-
author='echoromeo, capelevy',
56-
author_email='felis.lynx@gmail.com', # Optional
53+
author='echoromeo, capelevy, oyvindwe',
54+
# author_email='project@email.com', # Optional
5755

5856
# Classifiers help users find your project by categorizing it.
5957
#
@@ -63,7 +61,7 @@
6361
# 3 - Alpha
6462
# 4 - Beta
6563
# 5 - Production/Stable
66-
'Development Status :: 3 - Alpha',
64+
'Development Status :: 5 - Production/Stable',
6765

6866
# Indicate who your project is intended for
6967
'Intended Audience :: Developers',
@@ -108,7 +106,7 @@
108106
#
109107
# For an analysis of "install_requires" vs pip's requirements files see:
110108
# https://packaging.python.org/en/latest/requirements.html
111-
# install_requires=[ 'time', 'datetime', 'warnings', 'logging', 'collections', 'socket', 'threading'], # All are there by default?
109+
# install_requires=['asyncio', 'collections', 'contextlib', 'datetime', 'errno', 'logging', 'time', 'threading', 'warnings'], # All are there by default?
112110

113111
# List additional groups of dependencies here (e.g. development
114112
# dependencies). Users will be able to install these using the "extras"

0 commit comments

Comments
 (0)