Skip to content

Commit 3e5cc6b

Browse files
authored
Merge pull request #8293 from readthedocs/pyup/scheduled-update-2021-06-28
2 parents b8eb772 + e095a48 commit 3e5cc6b

File tree

5 files changed

+15
-16
lines changed

5 files changed

+15
-16
lines changed

readthedocs/api/v3/serializers.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class Meta:
173173
]
174174

175175
expandable_fields = {
176-
'config': (BuildConfigSerializer, {'source': 'config'})
176+
'config': (BuildConfigSerializer,)
177177
}
178178

179179
def get_finished(self, obj):
@@ -275,7 +275,7 @@ class Meta:
275275

276276
expandable_fields = {
277277
'last_build': (
278-
BuildSerializer, {'source': 'last_build'}
278+
BuildSerializer,
279279
)
280280
}
281281

@@ -569,12 +569,11 @@ class Meta:
569569
]
570570

571571
expandable_fields = {
572+
# NOTE: this has to be a Model method, can't be a
573+
# ``SerializerMethodField`` as far as I know
572574
'active_versions': (
573575
VersionSerializer,
574576
{
575-
# NOTE: this has to be a Model method, can't be a
576-
# ``SerializerMethodField`` as far as I know
577-
'source': 'active_versions',
578577
'many': True,
579578
}
580579
)
@@ -954,7 +953,7 @@ class Meta:
954953
RemoteOrganizationSerializer, {'source': 'organization'}
955954
),
956955
'projects': (
957-
ProjectSerializer, {'source': 'projects', 'many': True}
956+
ProjectSerializer, {'many': True}
958957
)
959958
}
960959

requirements/deploy.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Requirements for our production systems
22

33
-r pip.txt
4-
psycopg2==2.8.6
4+
psycopg2==2.9.1
55
gunicorn==20.1.0
66

77
# Version 3.0.0 drops support for Django < 3.0

requirements/docker.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
-r pip.txt
44
# https://www.psycopg.org/docs/install.html#psycopg-vs-psycopg-binary
5-
psycopg2-binary==2.8.6
5+
psycopg2-binary==2.9.1
66

77
# Version 3.0.0 drops support for Django < 3.0
88
# https://github.com/sebleier/django-redis-cache/#300
@@ -12,7 +12,7 @@ django-redis-cache==2.1.3 # pyup: ignore
1212
pillow==8.2.0
1313

1414
# local debugging tools
15-
watchdog==2.1.2
15+
watchdog==2.1.3
1616
datadiff==2.0.0
1717
ipdb==0.13.9
1818
pdbpp==0.10.2

requirements/pip.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Base packages
22

3-
pip==21.1.2
3+
pip==21.1.3
44
virtualenv==20.4.7
55

66
django==2.2.24 # pyup: <2.3
@@ -16,7 +16,7 @@ Sphinx==4.0.2
1616
# Filtering for the REST API
1717
django-filter==2.4.0
1818

19-
drf-flex-fields==0.9.0
19+
drf-flex-fields==0.9.1
2020
drf-extensions==0.7.0
2121

2222
django-vanilla-views==3.0.0
@@ -31,7 +31,7 @@ Pygments==2.9.0
3131
# Basic tools
3232
redis==3.5.3
3333
kombu==5.1.0
34-
celery==5.1.0
34+
celery==5.1.2
3535

3636
# When upgrading to 0.43.0 we should double check the ``base.html`` change
3737
# described in the changelog. In previous versions, the allauth app included a
@@ -41,13 +41,13 @@ celery==5.1.0
4141
# override ``account/base.html`` within your project.
4242
django-allauth==0.42.0 # pyup: ignore
4343

44-
GitPython==3.1.17
44+
GitPython==3.1.18
4545

4646
# Search
47-
elasticsearch==7.13.1 # pyup: <8.0.0
47+
elasticsearch==7.13.2 # pyup: <8.0.0
4848
elasticsearch-dsl==7.3.0 # pyup: <8.0
4949
django-elasticsearch-dsl==7.2.0 # pyup: <8.0
50-
selectolax==0.2.11
50+
selectolax==0.2.12
5151

5252
# embed
5353
pyquery==1.4.3

requirements/testing.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ django-dynamic-fixture==3.1.1
66
pytest==6.2.4
77
pytest-custom-exit-code==0.3.0
88
pytest-django==4.4.0
9-
pytest-xdist==2.2.1
9+
pytest-xdist==2.3.0
1010
pytest-cov==2.12.1
1111
apipkg==1.5
1212
execnet==1.9.0

0 commit comments

Comments
 (0)