From 26b945827008861407cf36112b7650c442361184 Mon Sep 17 00:00:00 2001 From: Yihui Xiong Date: Tue, 11 Jul 2017 12:29:55 +0800 Subject: [PATCH] 0.0.3 --- HISTORY.rst | 9 +++++++-- avs/__init__.py | 2 +- setup.py | 2 +- tests/test_avs.py | 2 -- tox.ini | 4 +--- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 25ab95a..1213d3c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,14 +2,19 @@ History ======= +0.0.3 (2017-07-11) +------------------ + +* use gstreamer to play audio stream +* support dueros avs compatible service +* many improments + 0.0.2 (2017-07-05) ------------------ * rename alexa util to alexa-tap * add oauth util alexa-auth -* First release on PyPI. - 0.0.1 (2017-07-04) ------------------ diff --git a/avs/__init__.py b/avs/__init__.py index 113cb96..d3e6c59 100644 --- a/avs/__init__.py +++ b/avs/__init__.py @@ -4,4 +4,4 @@ __author__ = """Yihui Xiong""" __email__ = 'yihui.xiong@hotmail.com' -__version__ = '0.0.2' +__version__ = '0.0.3' diff --git a/setup.py b/setup.py index 9f09a5c..217d328 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='avs', - version='0.0.2', + version='0.0.3', description="Python implementation of Alexa Voice Service App", long_description=readme + '\n\n' + history, author="Yihui Xiong", diff --git a/tests/test_avs.py b/tests/test_avs.py index 1828cc9..ca93cb1 100644 --- a/tests/test_avs.py +++ b/tests/test_avs.py @@ -6,8 +6,6 @@ import unittest -from avs import alexa - class TestAlexa(unittest.TestCase): """Tests for `avs` package.""" diff --git a/tox.ini b/tox.ini index 60a08f8..e1f4831 100644 --- a/tox.ini +++ b/tox.ini @@ -1,13 +1,11 @@ [tox] -envlist = py26, py27, py33, py34, py35, flake8 +envlist = py27, py34, py35, flake8 [travis] python = 3.5: py35 3.4: py34 - 3.3: py33 2.7: py27 - 2.6: py26 [testenv:flake8] basepython=python