Skip to content

Commit 9cd38b2

Browse files
committed
Merge branch 'master' into fix-flaky-test
2 parents 3206e98 + 7cf9217 commit 9cd38b2

File tree

6 files changed

+34
-36
lines changed

6 files changed

+34
-36
lines changed

pytest.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,3 @@ filterwarnings =
1313
ignore:Pagination may yield inconsistent results with an unordered object_list.*:django.core.paginator.UnorderedObjectListWarning
1414
# docutils
1515
ignore:'U' mode is deprecated:DeprecationWarning
16-
17-
# rest_framework_extensions.routers raises these
18-
ignore::rest_framework.RemovedInDRF311Warning

readthedocs/api/v3/serializers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class BuildConfigSerializer(FlexFieldsSerializerMixin, serializers.Serializer):
9999
which may produce incompatible changes in the API.
100100
"""
101101

102-
def to_representation(self, instance):
102+
def to_representation(self, instance): # pylint: disable=arguments-differ
103103
# For now, we want to return the ``config`` object as it is without
104104
# manipulating it.
105105
return instance

requirements/deploy.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
-r pip.txt
22
# http://initd.org/psycopg/docs/install.html#binary-install-from-pypi
33
psycopg2==2.8.3 --no-binary psycopg2
4-
gunicorn==19.9.0
5-
django-redis-cache==2.1.0
4+
gunicorn==20.0.4
5+
django-redis-cache==2.1.1
66

77
#For resizing images
8-
pillow==7.0.0
8+
pillow==7.1.2

requirements/docker.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
-r pip.txt
22
# http://initd.org/psycopg/docs/install.html#binary-install-from-pypi
3-
psycopg2-binary==2.8.3
4-
django-redis-cache==2.1.0
3+
psycopg2-binary==2.8.5
4+
django-redis-cache==2.1.1
55

66
# For resizing images
7-
pillow==7.0.0
7+
pillow==7.1.2
88

99
# local debugging tools
10-
watchdog==0.9.0
10+
watchdog==0.10.2
1111
datadiff==2.0.0
12-
ipdb==0.12.2
12+
ipdb==0.13.2
1313
pdbpp==0.10.2
1414

1515
# run tests
16-
tox==3.14.1
16+
tox==3.15.0

requirements/pip.txt

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Base packages
2-
pip==20.0.2
2+
pip==20.1
33
appdirs==1.4.3
4-
virtualenv==20.0.16
4+
virtualenv==20.0.20
55

66
django==2.2.12 # pyup: <2.3
77
django-extensions==2.2.9
88
django_polymorphic==2.1.2
99

10-
djangorestframework==3.10.3
10+
djangorestframework==3.11.0
1111

1212
# For intersphinx during builds
1313
# Use <2.x until we fix some issues in our theme.
@@ -17,11 +17,11 @@ Sphinx==1.8.5 # pyup: <2.0.0
1717
# Filtering for the REST API
1818
django-filter==2.2.0
1919

20-
drf-flex-fields==0.6.1
21-
drf-extensions==0.5.0
20+
drf-flex-fields==0.8.0
21+
drf-extensions==0.6.0
2222

2323
django-vanilla-views==1.0.6
24-
jsonfield==2.0.2
24+
jsonfield==3.1.0
2525

2626
requests==2.23.0
2727
requests-toolbelt==0.9.1
@@ -42,10 +42,10 @@ celery==4.1.1 # pyup: ignore
4242

4343
django-allauth==0.41.0
4444

45-
GitPython==3.0.8
45+
GitPython==3.1.1
4646

4747
# Search
48-
elasticsearch==6.4.0 # pyup: <7.0.0
48+
elasticsearch==6.8.1 # pyup: <7.0.0
4949

5050

5151
# elasticsearch-dsl==6.3.1 produces this error
@@ -70,37 +70,38 @@ orjson==2.0.7 # pyup: ignore
7070

7171
# Utils
7272
django-gravatar2==1.4.4
73-
pytz==2019.3
73+
pytz==2020.1
7474
Unipath==1.1
7575
django-kombu==0.9.4
76-
stripe==2.44.0
76+
stripe==2.47.0
7777
regex==2020.4.4
7878

7979
# unicode-slugify==0.1.5 is not released on PyPI yet
8080
git+https://github.com/mozilla/unicode-slugify@b696c37#egg=unicode-slugify==0.1.5
8181

82-
django-formtools==2.1
83-
django-crispy-forms==1.8.0
82+
django-formtools==2.2
83+
django-crispy-forms==1.9.0
8484

85-
docker==4.1.0
85+
docker==4.2.0
8686

8787
django-textclassifier==1.0
8888
# django-textclassifier doesn't have pinned versions
8989
# if there is an update they could break our code
90-
nltk==3.4.5
90+
nltk==3.5
9191
textblob==0.15.3
9292

93-
django-annoying==0.10.5
94-
django-messages-extends==0.6.2
93+
django-annoying==0.10.6
94+
django-messages-extends==0.6.2
9595
djangorestframework-jsonp==1.0.2
96-
django-taggit==1.1.0
96+
django-taggit==1.2.0
9797
dj-pagination==2.4.0
9898

9999
# Version comparison stuff
100-
packaging==19.2
100+
packaging==20.3
101101

102-
# Commenting stuff
103-
django-cors-middleware==1.4.0
102+
# django-cors-middleware==1.5.0 fails with
103+
# AttributeError: 'dict' object has no attribute 'has_header'
104+
django-cors-middleware==1.4.0 # pyup: ignore
104105

105106
# User agent parsing - used for analytics purposes
106107
user-agents==2.1

requirements/testing.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
django-dynamic-fixture==3.1.0
55
pytest==5.4.2
66
pytest-custom-exit-code==0.3.0
7-
pytest-django==3.8.0
8-
pytest-xdist==1.30.0
7+
pytest-django==3.9.0
8+
pytest-xdist==1.32.0
99
pytest-cov==2.8.1
1010
apipkg==1.5
1111
execnet==1.7.1
@@ -19,7 +19,7 @@ execnet==1.7.1
1919
Mercurial==4.4.2 # pyup: ignore
2020

2121
yamale==2.0.1
22-
pytest-mock==1.11.2
22+
pytest-mock==3.1.0
2323

2424
# local debugging tools
2525
datadiff==2.0.0

0 commit comments

Comments
 (0)