forked from jkenlooper/puzzle-massive
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up dependencies in prep for python3
- Loading branch information
1 parent
b2a57bf
commit 970cae3
Showing
13 changed files
with
44 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,13 @@ | ||
-r ../requirements.txt | ||
Beaker == 1.6.4 | ||
#Jinja2==2.9 | ||
Pillow == 3.3.0 | ||
https://github.com/jkenlooper/chill/archive/develop.zip#egg=chill | ||
psycopg2<2.9.0 | ||
git+https://github.com/jkenlooper/pyselect#egg=pyselect | ||
Pillow == 6.0.0 | ||
git+https://github.com/jkenlooper/glue#egg=glue | ||
https://github.com/jkenlooper/pixsaw/archive/develop.zip#egg=pixsaw | ||
docopt==0.6.2 | ||
html == 1.16 | ||
piecemaker == 0.2.4 | ||
progressbar == 2.3 | ||
pycurl==7.43.0.2 | ||
pysqlite==2.8.3 | ||
redis == 2.10.6 | ||
rq==0.12.0 | ||
websocket-client==0.53.0 | ||
requests==2.20 | ||
Flask-Sockets==0.2.1 | ||
simplejson == 3.1.3 | ||
flask-secure-cookie == 0.1.2 | ||
https://github.com/jkenlooper/piecemaker/archive/develop.zip#egg=piecemaker | ||
#pycurl==7.43.0.2 | ||
|
||
requests==2.21 | ||
#TODO: update to cairosvg==2.3.0 when only supporting py3 | ||
cairosvg==1.0.22 | ||
pycairo==1.17.1 | ||
boto3==1.9.47 | ||
-e api/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,5 @@ | |
/thresholder.py | ||
/viewer.py | ||
/wsdump.py | ||
|
||
/futurize | ||
/pasteurize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#!/usr/bin/env python | ||
|
||
from __future__ import print_function | ||
import sys | ||
import os.path | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
-r ../requirements.txt | ||
https://github.com/jkenlooper/chill/archive/develop.zip#egg=chill | ||
psycopg2<2.9.0 | ||
git+https://github.com/jkenlooper/pyselect#egg=pyselect |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
-r ../requirements.txt | ||
websocket-client==0.53.0 | ||
gevent-websocket==0.10.1 | ||
# TODO: include numpy and wsaccel to improve performance of ws.send | ||
-e divulger/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
Flask==1.0 | ||
SQLAlchemy==1.3.2 | ||
gevent==1.3.6 | ||
gevent-websocket==0.10.1 | ||
SQLAlchemy==1.3.3 | ||
gevent==1.4.0 | ||
https://github.com/jkenlooper/chill/archive/develop.zip#egg=chill | ||
psycopg2<2.9.0 | ||
|
||
#TODO: modify zadd commands before updating to redis 3 | ||
redis == 2.10.6 | ||
#TODO: use hiredis to improve redis parser speed | ||
hiredis == 1.0.0 | ||
#TODO: rq==1.0 requires redis >= 3 | ||
rq==0.12.0 | ||
|