Skip to content

Commit

Permalink
Update requirements and bump to 5.6.4
Browse files Browse the repository at this point in the history
* update all requirements
* remove urban plugin

closes #107
  • Loading branch information
llimllib committed Jun 21, 2017
1 parent 41b984a commit e1a1ac1
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 500 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -15,3 +15,4 @@ slask.egg-info/
.tox
.start.sh
.vagrant
.python-version
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -3,6 +3,7 @@ python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- "pypy"
install: pip install -r requirements.txt && python setup.py install
script: make test
Expand Down
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -47,7 +47,6 @@ These are the current default plugins:
* [map](https://github.com/llimllib/limbo/wiki/Map-Plugin)
* [stock](https://github.com/llimllib/limbo/wiki/Stock-Plugin)
* [stockphoto](https://github.com/llimllib/limbo/wiki/Stock-Photo-Plugin)
* [urban](https://github.com/llimllib/limbo/wiki/Urban)
* [weather](https://github.com/llimllib/limbo/wiki/Weather-Plugin)
* [wiki](https://github.com/llimllib/limbo/wiki/Wiki-Plugin)
* [youtube](https://github.com/llimllib/limbo/wiki/Youtube-Plugin)
Expand Down
41 changes: 0 additions & 41 deletions limbo/plugins/urban.py

This file was deleted.

3 changes: 3 additions & 0 deletions requirements-to-freeze.txt
Expand Up @@ -22,3 +22,6 @@ tox

# banner plugin
pyfiglet

#slack
websocket-client
50 changes: 30 additions & 20 deletions requirements.txt
@@ -1,27 +1,37 @@
beautifulsoup4==4.5.1
certifi==2016.9.26
cffi==1.9.1
coverage==4.2
cryptography==1.6
flake8==3.2.1
asn1crypto==0.22.0
beautifulsoup4==4.6.0
certifi==2017.4.17
cffi==1.10.0
chardet==3.0.4
configparser==3.5.0
contextlib2==0.5.5
coverage==4.4.1
cryptography==1.9
enum34==1.1.6
flake8==3.3.0
funcsigs==1.0.2
html5lib==0.999999999
idna==2.1
mccabe==0.5.2
idna==2.5
ipaddress==1.0.18
mccabe==0.6.1
mock==2.0.0
pbr==3.1.0
pluggy==0.4.0
py==1.4.31
pyasn1==0.1.9
pycodestyle==2.2.0
py==1.4.34
pycodestyle==2.3.1
pycparser==2.17
pyfiglet==0.7.5
pyflakes==1.3.0
pyOpenSSL==16.2.0
pytest==3.0.5
pytest-cov==2.4.0
pyflakes==1.5.0
pyOpenSSL==17.0.0
pytest==3.1.2
pytest-cov==2.5.1
PyYAML==3.12
requests==2.12.3
requests==2.18.1
six==1.10.0
tox==2.5.0
vcrpy==1.10.3
tox==2.7.0
urllib3==1.21.1
vcrpy==1.11.1
virtualenv==15.1.0
webencodings==0.5
wrapt==1.10.8
webencodings==0.5.1
websocket-client==0.42.1
wrapt==1.10.10
6 changes: 2 additions & 4 deletions setup.py
Expand Up @@ -12,9 +12,7 @@

PYTHON3 = sys.version_info[0] > 2

required = ['requests>=2.12', 'websocket-client==0.40.0',
'beautifulsoup4==4.5.1', 'html5lib==0.999999999', 'pyfiglet==0.7.5',
'certifi==2016.9.26']
required = []
if not PYTHON3:
required += ['importlib>=1.0.4']

Expand All @@ -27,7 +25,7 @@

setup(
name='limbo',
version='5.6.3',
version='5.6.4',
description='Simple and Clean Slack Chatbot',
long_description=longdesc,
author='Bill Mill',
Expand Down
415 changes: 0 additions & 415 deletions test/fixtures/mlb_basic.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions test/test_plugins/test_urban.py

This file was deleted.

2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py27, py34, py35, pypy
envlist = py27, py34, py35, py36, pypy

[testenv]
commands = make test
Expand Down

0 comments on commit e1a1ac1

Please sign in to comment.