Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from cgoldberg:master #1

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ python:
- 3.3
- 3.4
- 3.5
- 3.6
install:
- pip install flake8
before_script:
- flake8 .
- flake8
script:
- python -m unittest discover
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: Financial :: Investment',
'Operating System :: OS Independent',
Expand All @@ -53,5 +52,6 @@
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)
10 changes: 4 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@
# and then run "tox" from this directory.

[tox]
envlist = flake8, py27, py35
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
2 changes: 1 addition & 1 deletion ystockquote.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Requires: Python 2.7/3.3+


__version__ = '0.2.5dev' # NOQA
__version__ = '0.2.6dev' # NOQA


try:
Expand Down