Skip to content

Commit

Permalink
Merge pull request #19 from echoromeo/pypi_v200
Browse files Browse the repository at this point in the history
Prepare for 1.2.0 release
  • Loading branch information
echoromeo authored May 19, 2021
2 parents 12558d9 + fe7e0e2 commit 9bb23d5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ not perform any I/O, and can safely be called from the event loop.
* get_current_component_temperature - Get the current temperature from a component
* get_current_zone_temperature - Get the current temperature from (the first component in) a zone

## Backwards compatability
## Backwards compatibility

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

import time
from pynobo import nobo
Expand Down
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@
# 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
#
# pynobo: API version + serial release + alpha/beta/rc
version='1.2.0',
description='Nobø Hub / Nobø Energy Control TCP/IP Interface',

Expand All @@ -52,8 +50,8 @@

# This should be your name or the name of the organization which owns the
# project.
author='echoromeo, capelevy',
author_email='felis.lynx@gmail.com', # Optional
author='echoromeo, capelevy, oyvindwe',
# author_email='project@email.com', # Optional

# Classifiers help users find your project by categorizing it.
#
Expand All @@ -63,7 +61,7 @@
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable',

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

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

0 comments on commit 9bb23d5

Please sign in to comment.