File tree Expand file tree Collapse file tree 5 files changed +15
-16
lines changed Expand file tree Collapse file tree 5 files changed +15
-16
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ class Meta:
173
173
]
174
174
175
175
expandable_fields = {
176
- 'config' : (BuildConfigSerializer , { 'source' : 'config' } )
176
+ 'config' : (BuildConfigSerializer ,)
177
177
}
178
178
179
179
def get_finished (self , obj ):
@@ -275,7 +275,7 @@ class Meta:
275
275
276
276
expandable_fields = {
277
277
'last_build' : (
278
- BuildSerializer , { 'source' : 'last_build' }
278
+ BuildSerializer ,
279
279
)
280
280
}
281
281
@@ -569,12 +569,11 @@ class Meta:
569
569
]
570
570
571
571
expandable_fields = {
572
+ # NOTE: this has to be a Model method, can't be a
573
+ # ``SerializerMethodField`` as far as I know
572
574
'active_versions' : (
573
575
VersionSerializer ,
574
576
{
575
- # NOTE: this has to be a Model method, can't be a
576
- # ``SerializerMethodField`` as far as I know
577
- 'source' : 'active_versions' ,
578
577
'many' : True ,
579
578
}
580
579
)
@@ -954,7 +953,7 @@ class Meta:
954
953
RemoteOrganizationSerializer , {'source' : 'organization' }
955
954
),
956
955
'projects' : (
957
- ProjectSerializer , {'source' : 'projects' , ' many' : True }
956
+ ProjectSerializer , {'many' : True }
958
957
)
959
958
}
960
959
Original file line number Diff line number Diff line change 1
1
# Requirements for our production systems
2
2
3
3
-r pip.txt
4
- psycopg2==2.8.6
4
+ psycopg2==2.9.1
5
5
gunicorn==20.1.0
6
6
7
7
# Version 3.0.0 drops support for Django < 3.0
Original file line number Diff line number Diff line change 2
2
3
3
-r pip.txt
4
4
# https://www.psycopg.org/docs/install.html#psycopg-vs-psycopg-binary
5
- psycopg2-binary==2.8.6
5
+ psycopg2-binary==2.9.1
6
6
7
7
# Version 3.0.0 drops support for Django < 3.0
8
8
# https://github.com/sebleier/django-redis-cache/#300
@@ -12,7 +12,7 @@ django-redis-cache==2.1.3 # pyup: ignore
12
12
pillow==8.2.0
13
13
14
14
# local debugging tools
15
- watchdog==2.1.2
15
+ watchdog==2.1.3
16
16
datadiff==2.0.0
17
17
ipdb==0.13.9
18
18
pdbpp==0.10.2
Original file line number Diff line number Diff line change 1
1
# Base packages
2
2
3
- pip==21.1.2
3
+ pip==21.1.3
4
4
virtualenv==20.4.7
5
5
6
6
django==2.2.24 # pyup: <2.3
@@ -16,7 +16,7 @@ Sphinx==4.0.2
16
16
# Filtering for the REST API
17
17
django-filter==2.4.0
18
18
19
- drf-flex-fields==0.9.0
19
+ drf-flex-fields==0.9.1
20
20
drf-extensions==0.7.0
21
21
22
22
django-vanilla-views==3.0.0
@@ -31,7 +31,7 @@ Pygments==2.9.0
31
31
# Basic tools
32
32
redis==3.5.3
33
33
kombu==5.1.0
34
- celery==5.1.0
34
+ celery==5.1.2
35
35
36
36
# When upgrading to 0.43.0 we should double check the ``base.html`` change
37
37
# described in the changelog. In previous versions, the allauth app included a
@@ -41,13 +41,13 @@ celery==5.1.0
41
41
# override ``account/base.html`` within your project.
42
42
django-allauth==0.42.0 # pyup: ignore
43
43
44
- GitPython==3.1.17
44
+ GitPython==3.1.18
45
45
46
46
# Search
47
- elasticsearch==7.13.1 # pyup: <8.0.0
47
+ elasticsearch==7.13.2 # pyup: <8.0.0
48
48
elasticsearch-dsl==7.3.0 # pyup: <8.0
49
49
django-elasticsearch-dsl==7.2.0 # pyup: <8.0
50
- selectolax==0.2.11
50
+ selectolax==0.2.12
51
51
52
52
# embed
53
53
pyquery==1.4.3
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ django-dynamic-fixture==3.1.1
6
6
pytest==6.2.4
7
7
pytest-custom-exit-code==0.3.0
8
8
pytest-django==4.4.0
9
- pytest-xdist==2.2.1
9
+ pytest-xdist==2.3.0
10
10
pytest-cov==2.12.1
11
11
apipkg==1.5
12
12
execnet==1.9.0
You can’t perform that action at this time.
0 commit comments