Skip to content

Commit

Permalink
Merge branch 'beta'
Browse files Browse the repository at this point in the history
  • Loading branch information
markusressel committed Nov 27, 2017
2 parents 1f58f8f + bb3754c commit a7100b3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
5 changes: 4 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
sunix-ledstrip-controller-client
.. |pypi_version| image:: https://badge.fury.io/py/sunix-ledstrip-controller-client.svg
:target: https://badge.fury.io/py/sunix-ledstrip-controller-client

sunix-ledstrip-controller-client |pypi_version|
================================

A python 3.4+ library for controlling the Sunix® RGB / RGBWWCW WiFi LED Strip controller.
Expand Down
7 changes: 5 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
#
import os
import sys

from setup import VERSION_NUMBER, VERSION_NAME

sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('../'))

Expand Down Expand Up @@ -60,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = '1.2.0'
version = VERSION_NUMBER
# The full version, including alpha/beta/rc tags.
release = '1.2.0'
release = VERSION_NAME

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

VERSION_NUMBER = "1.2.1"
VERSION_NUMBER = "1.2.2"

GIT_BRANCH = subprocess.check_output(["git", "rev-parse", "--abbrev-ref", "HEAD"])
GIT_BRANCH = GIT_BRANCH.decode() # convert to standard string
Expand Down Expand Up @@ -35,6 +35,10 @@
DEVELOPMENT_STATUS,
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
install_requires=[
'construct',
Expand Down

0 comments on commit a7100b3

Please sign in to comment.