From 003959b8878049a150d46a066733dc3d0ed5f91b Mon Sep 17 00:00:00 2001 From: Corey Goldberg Date: Fri, 3 Mar 2017 14:11:16 -0500 Subject: [PATCH 1/8] tox and travis for python 3.6 --- .travis.yml | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3f2716f..0c36d55 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ python: - 3.3 - 3.4 - 3.5 + - 3.6 install: - pip install flake8 before_script: diff --git a/tox.ini b/tox.ini index a909b4b..7bb5922 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = flake8, py27, py35 +envlist = flake8, py27, py36 [testenv] commands = From 6195590dc19347e663f29351615a016c04a5529c Mon Sep 17 00:00:00 2001 From: Corey Goldberg Date: Fri, 3 Mar 2017 14:12:51 -0500 Subject: [PATCH 2/8] bump version for release --- ystockquote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ystockquote.py b/ystockquote.py index 3feaae1..c9763ff 100644 --- a/ystockquote.py +++ b/ystockquote.py @@ -13,7 +13,7 @@ # Requires: Python 2.7/3.3+ -__version__ = '0.2.5dev' # NOQA +__version__ = '0.2.5' # NOQA try: From 9b278d2372ce62108d48c82d4f62aeb82a5872cd Mon Sep 17 00:00:00 2001 From: Corey Goldberg Date: Fri, 3 Mar 2017 14:17:00 -0500 Subject: [PATCH 3/8] fix setup --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3219d04..dff8b7f 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Intended Audience :: Financial and Insurance Industry', - 'License :: OSI Approved :: GNU Lesser General Public License', + 'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Office/Business :: Financial :: Investment', 'Operating System :: OS Independent', From 825ee81fce485b482407ad1d9d1c6fd34a3128f5 Mon Sep 17 00:00:00 2001 From: Corey Goldberg Date: Fri, 3 Mar 2017 14:17:46 -0500 Subject: [PATCH 4/8] bump dev version --- ystockquote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ystockquote.py b/ystockquote.py index c9763ff..905b362 100644 --- a/ystockquote.py +++ b/ystockquote.py @@ -13,7 +13,7 @@ # Requires: Python 2.7/3.3+ -__version__ = '0.2.5' # NOQA +__version__ = '0.2.6dev' # NOQA try: From 619a862855a7facc8939c66e7afa9c78383d2ea0 Mon Sep 17 00:00:00 2001 From: Corey Goldberg Date: Fri, 3 Mar 2017 14:19:03 -0500 Subject: [PATCH 5/8] add classifier for python 3.6 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index dff8b7f..1db6eb9 100644 --- a/setup.py +++ b/setup.py @@ -53,5 +53,6 @@ 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ] ) From d172a3e4274b34cf2dc5774d340f1974945e8309 Mon Sep 17 00:00:00 2001 From: Corey Goldberg Date: Sat, 4 Mar 2017 10:01:04 -0500 Subject: [PATCH 6/8] remove trove classifier --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 1db6eb9..3ba8cd9 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,6 @@ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Intended Audience :: Financial and Insurance Industry', - 'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Office/Business :: Financial :: Investment', 'Operating System :: OS Independent', From 5b75ed3477752ae867ca794e8a65ff52fb497ed5 Mon Sep 17 00:00:00 2001 From: Corey Goldberg Date: Sat, 4 Mar 2017 10:02:31 -0500 Subject: [PATCH 7/8] fix travis --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0c36d55..c30bdb9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,6 @@ python: install: - pip install flake8 before_script: - - flake8 . + - flake8 script: - python -m unittest discover From 1f4325fde3098b07036e232d6eb610f4c3041cb8 Mon Sep 17 00:00:00 2001 From: Corey Goldberg Date: Fri, 10 Mar 2017 12:28:51 -0500 Subject: [PATCH 8/8] Update tox.ini --- tox.ini | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index 7bb5922..bef0f70 100644 --- a/tox.ini +++ b/tox.ini @@ -7,10 +7,8 @@ envlist = flake8, py27, py36 [testenv] -commands = - {envpython} -m unittest discover +commands = {envpython} -m unittest discover [testenv:flake8] -basepython=python3 -deps=flake8 -commands=flake8 +deps: flake8 +commands: {envpython} -m flake8