Skip to content
This repository has been archived by the owner on Jun 17, 2023. It is now read-only.

Commit

Permalink
py3 setup (#485)
Browse files Browse the repository at this point in the history
* update python dependencies

* update tests reqs

* py3 testing reqs
  • Loading branch information
sfinlon authored Apr 3, 2020
1 parent 1bb73a6 commit 2952917
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,23 @@ maxminddb>=1.2.0,<1.3
geoip2>=2.8.0,<2.9
pygeoip==0.3.2
dnspython>=1.15.0,<1.16
Flask==0.12.3
Flask>=1.0
flask-cors>=3.0,<4.0
PyYAML>=4.2b1
SQLAlchemy>=1.0.14,<1.1
elasticsearch>=5.3,<5.5
elasticsearch-dsl>=5.3,<5.5
ujson>=1.35
html5lib==1.0b8 # bug in csirtg-smrt upstream
msgpack-python>=0.4.8,<0.5.0
apwgsdk==0.0.0a6
csirtg_smrt>=1.0,<2.0
csirtg_dnsdb==0.0.0a4
tornado>=4.4.1,<5.0
faker==0.7.11
tornado>=5.1.0
faker==0.7.10
Flask-Bootstrap==3.3.6.0
gevent==1.2.1
gunicorn==19.7.1
urllib3<1.25,>=1.21.1
requests==2.22.0
ujson==1.35
zipp==0.6.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
err_msg = e.message.replace("No module named ", "")
msg = "%s is not installed. Install your test requirements." % err_msg
raise ImportError(msg)
r = os.system('py.test test -v --cov=cif --cov-fail-under=34')
r = os.system('py.test test -v --cov=cif --cov-fail-under=33')
if r == 0:
sys.exit()
else:
Expand Down

0 comments on commit 2952917

Please sign in to comment.