Skip to content

Commit 0045f06

Browse files
committed
Upgrade all packages using pur
for reqs in `ls requirements`; do pur --skip django-tastypie,django,docker,elasticsearch,pyelasticsearch,commonmark,stripe,djangorestframework,mkdocs,django-allauth,django-filter,mercurial --requirement requirements/$reqs; done
1 parent a29fea4 commit 0045f06

File tree

4 files changed

+34
-25
lines changed

4 files changed

+34
-25
lines changed

requirements/deploy.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
-r pip.txt
2-
psycopg2==2.7.3.2
3-
gunicorn==19.1.0
4-
pysolr==2.0.13
5-
django-redis-cache==1.6.3
2+
# http://initd.org/psycopg/docs/install.html#binary-install-from-pypi
3+
psycopg2==2.7.5 --no-binary psycopg2
4+
gunicorn==19.9.0
5+
pysolr==3.7.0
6+
django-redis-cache==1.7.1
67

78
#For resizing images
89
pillow

requirements/lint.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-r pip.txt
2-
astroid==1.6.4
3-
pylint==1.9.1
4-
pylint-django==0.11.1
2+
astroid==2.0.4
3+
pylint==2.1.1
4+
pylint-django==2.0.2
55
pylint-celery==0.3
6-
prospector==0.12.10
6+
prospector==1.1.2
77
pyflakes==2.0.0

requirements/pip.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Base packages
2-
pip==10.0.1
2+
pip==18.0
33
appdirs==1.4.3
44
virtualenv==16.0.0
55
docutils==0.14
6-
Sphinx==1.7.4
7-
sphinx_rtd_theme==0.3.1
6+
Sphinx==1.7.8
7+
sphinx_rtd_theme==0.4.1
88

99
Pygments==2.2.0
1010

@@ -18,7 +18,7 @@ future==0.16.0
1818
django-tastypie==0.13.0
1919

2020
django-guardian==1.4.9
21-
django-extensions==2.0.7
21+
django-extensions==2.1.2
2222

2323
# djangorestframework 3.7.x drops support for django 1.9.x
2424
djangorestframework==3.6.4
@@ -29,15 +29,15 @@ django-filter==1.1.0
2929
django-vanilla-views==1.0.5
3030
jsonfield==2.0.2
3131

32-
requests==2.18.4
32+
requests==2.19.1
3333
requests-toolbelt==0.8.0
3434
slumber==0.7.1
35-
lxml==4.2.1
35+
lxml==4.2.4
3636
defusedxml==0.5.0
3737

3838
# Basic tools
3939
redis==2.10.6
40-
celery==4.1.1
40+
celery==4.2.1
4141

4242
# django-allauth 0.33.0 dropped support for Django 1.9
4343
# https://django-allauth.readthedocs.io/en/latest/release-notes.html#backwards-incompatible-changes
@@ -47,7 +47,7 @@ dnspython==1.15.0
4747

4848
# VCS
4949
httplib2==0.11.3
50-
GitPython==2.1.10
50+
GitPython==2.1.11
5151

5252
# Search
5353
elasticsearch==1.5.0
@@ -56,8 +56,8 @@ pyquery==1.4.0
5656

5757
# Utils
5858
django-gravatar2==1.4.2
59-
pytz==2018.4
60-
beautifulsoup4==4.6.0
59+
pytz==2018.5
60+
beautifulsoup4==4.6.3
6161
Unipath==1.1
6262
django-kombu==0.9.4
6363
mock==2.0.0
@@ -78,11 +78,11 @@ django-textclassifier==1.0
7878
django-annoying==0.10.4
7979
django-messages-extends==0.6.0
8080
djangorestframework-jsonp==1.0.2
81-
django-taggit==0.22.2
81+
django-taggit==0.23.0
8282
dj-pagination==2.3.2
8383

8484
# Docs
85-
sphinxcontrib-httpdomain==1.6.1
85+
sphinxcontrib-httpdomain==1.7.0
8686

8787
# commonmark 0.5.5 is the latest version compatible with our docs, the
8888
# newer ones make `tox -e docs` to fail

requirements/testing.txt

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,21 @@ django-dynamic-fixture==2.0.0
44

55
# 3.6.1 and >3.2.5 is incompatible
66
# with pytest-describe 0.11.0
7-
pytest==3.2.5
8-
pytest-django==3.1.2
9-
pytest-describe==0.11.0
10-
pytest-xdist==1.22.0
11-
apipkg==1.4
7+
pytest==3.7.4
8+
pytest-django==3.4.2
9+
pytest-describe==0.11.1
10+
pytest-xdist==1.23.0
11+
apipkg==1.5
1212
execnet==1.5.0
13+
14+
# Mercurial 4.3 and newer require Python 2.7
15+
# Mercurial is actively being ported to Python 3. As of Mercurial 4.3,
16+
# some commands work on Python 3. However, Python 3 is not yet a
17+
# supported platform.
18+
# mercurial-scm.org/wiki/SupportedPythonVersions
19+
# (Pinned to 4.4.2 since what we need for testing is still useful)
1320
Mercurial==4.4.2
21+
1422
yamale==1.7.0
1523
pytest-mock==1.10.0
1624

0 commit comments

Comments
 (0)