Skip to content

pyup: Scheduled weekly dependency update for week 26 #8293

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Jun 29, 2021
Merged
11 changes: 5 additions & 6 deletions readthedocs/api/v3/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ class Meta:
]

expandable_fields = {
'config': (BuildConfigSerializer, {'source': 'config'})
'config': (BuildConfigSerializer,)
}

def get_finished(self, obj):
Expand Down Expand Up @@ -275,7 +275,7 @@ class Meta:

expandable_fields = {
'last_build': (
BuildSerializer, {'source': 'last_build'}
BuildSerializer,
)
}

Expand Down Expand Up @@ -569,12 +569,11 @@ class Meta:
]

expandable_fields = {
# NOTE: this has to be a Model method, can't be a
# ``SerializerMethodField`` as far as I know
'active_versions': (
VersionSerializer,
{
# NOTE: this has to be a Model method, can't be a
# ``SerializerMethodField`` as far as I know
'source': 'active_versions',
'many': True,
}
)
Expand Down Expand Up @@ -954,7 +953,7 @@ class Meta:
RemoteOrganizationSerializer, {'source': 'organization'}
),
'projects': (
ProjectSerializer, {'source': 'projects', 'many': True}
ProjectSerializer, {'many': True}
)
}

Expand Down
2 changes: 1 addition & 1 deletion requirements/deploy.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Requirements for our production systems

-r pip.txt
psycopg2==2.8.6
psycopg2==2.9.1
gunicorn==20.1.0

# Version 3.0.0 drops support for Django < 3.0
Expand Down
4 changes: 2 additions & 2 deletions requirements/docker.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

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

# local debugging tools
watchdog==2.1.2
watchdog==2.1.3
datadiff==2.0.0
ipdb==0.13.9
pdbpp==0.10.2
Expand Down
12 changes: 6 additions & 6 deletions requirements/pip.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Base packages

pip==21.1.2
pip==21.1.3
virtualenv==20.4.7

django==2.2.24 # pyup: <2.3
Expand All @@ -16,7 +16,7 @@ Sphinx==4.0.2
# Filtering for the REST API
django-filter==2.4.0

drf-flex-fields==0.9.0
drf-flex-fields==0.9.1
drf-extensions==0.7.0

django-vanilla-views==3.0.0
Expand All @@ -31,7 +31,7 @@ Pygments==2.9.0
# Basic tools
redis==3.5.3
kombu==5.1.0
celery==5.1.0
celery==5.1.2

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

GitPython==3.1.17
GitPython==3.1.18

# Search
elasticsearch==7.13.1 # pyup: <8.0.0
elasticsearch==7.13.2 # pyup: <8.0.0
elasticsearch-dsl==7.3.0 # pyup: <8.0
django-elasticsearch-dsl==7.2.0 # pyup: <8.0
selectolax==0.2.11
selectolax==0.2.12

# embed
pyquery==1.4.3
Expand Down
2 changes: 1 addition & 1 deletion requirements/testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ django-dynamic-fixture==3.1.1
pytest==6.2.4
pytest-custom-exit-code==0.3.0
pytest-django==4.4.0
pytest-xdist==2.2.1
pytest-xdist==2.3.0
pytest-cov==2.12.1
apipkg==1.5
execnet==1.9.0
Expand Down