Skip to content

Commit

Permalink
feat: update project deps and use compat release
Browse files Browse the repository at this point in the history
  • Loading branch information
manu-chroma committed Nov 8, 2018
1 parent 69335c1 commit 159d85e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from dotenv import load_dotenv
from flask import Flask, request, render_template
from flask.ext.cors import CORS, cross_origin
from flask_cors import CORS, cross_origin
import yaml

app = Flask(__name__,
Expand Down
13 changes: 6 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
Flask==0.10.1
Flask-Cors==2.1.2
gunicorn==19.4.5
requests~=2.12
pyyaml==3.12
beautifulsoup4==4.6.0
python-dotenv==0.7.1
Flask~=1.0.2
Flask-Cors~=3.0.6
requests~=2.20
pyyaml~=3.12
beautifulsoup4~=4.6.0
python-dotenv~=0.9.1
14 changes: 7 additions & 7 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
click==6.6 # Temporary fix for coala error with dependencies
pytest
pytest-rerunfailures==4.2
parameterized==0.6.1
exrex==0.10.5
coala
coala-bears
requests-toolbelt==0.8.0
pytest~=3.10.0
pytest-rerunfailures~=5.0
parameterized~=0.6.1
exrex~=0.10.5
coala~=0.11.0
coala-bears~=0.11.1
requests-toolbelt~=0.8.0
2 changes: 1 addition & 1 deletion username_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from requests_toolbelt.utils import dump
from bs4 import BeautifulSoup
from flask import Flask, jsonify
from flask.ext.cors import CORS, cross_origin
from flask_cors import CORS, cross_origin
from werkzeug.contrib.cache import SimpleCache

app = Flask(__name__)
Expand Down

0 comments on commit 159d85e

Please sign in to comment.