Skip to content

Commit

Permalink
fix(dependencies): Pin dependencies to keep it working with python 2.7
Browse files Browse the repository at this point in the history
* pinned more-itertools to < 6.0.0
* pinned pytest to <= 4.6.6

Newer versions dropped support for python 2.7
  • Loading branch information
aexvir authored and imunitic committed Nov 21, 2019
1 parent 93b2373 commit 44472ce
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions test-requirements.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
asyncpg; python_version > "3"
dictalchemy
flask
pytest
pytest <= 4.6.6
pytest-cov
pytz
sqlalchemy
arrow
arrow
more-itertools < 6.0.0
7 changes: 4 additions & 3 deletions test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#
arrow==0.15.4
asyncpg==0.20.0 ; python_version > "3"
atomicwrites==1.3.0 # via pytest
attrs==19.3.0 # via pytest
click==7.0 # via flask
coverage==4.5.4 # via pytest-cov
Expand All @@ -15,16 +16,16 @@ importlib-metadata==0.23 # via pluggy, pytest
itsdangerous==1.1.0 # via flask
jinja2==2.10.3 # via flask
markupsafe==1.1.1 # via jinja2
more-itertools==7.2.0 # via pytest, zipp
more-itertools==5.0.0
packaging==19.2 # via pytest
pluggy==0.13.0 # via pytest
py==1.8.0 # via pytest
pyparsing==2.4.5 # via packaging
pytest-cov==2.8.1
pytest==5.3.0
pytest==4.6.6
python-dateutil==2.8.1 # via arrow
pytz==2019.3
six==1.13.0 # via packaging, python-dateutil
six==1.13.0 # via more-itertools, packaging, pytest, python-dateutil
sqlalchemy==1.3.11
wcwidth==0.1.7 # via pytest
werkzeug==0.16.0 # via flask
Expand Down

0 comments on commit 44472ce

Please sign in to comment.