Skip to content

Commit

Permalink
⬆️ Fixes #246, fixes #256, fixes #258, fixes #259 -- bump dependencies
Browse files Browse the repository at this point in the history
A single PR to bump the various dependabot PR, correctly with the right
pip-compile calls.
  • Loading branch information
sergei-maertens committed Mar 22, 2021
1 parent 7591c72 commit 054c142
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 22 deletions.
6 changes: 3 additions & 3 deletions backend/bin/compile_dependencies.sh
Expand Up @@ -8,19 +8,19 @@ cd $toplevel/backend

# Base (& prod) deps
pip-compile \
--no-index \
--no-emit-index-url \
requirements/base.in

# Dependencies for testing
pip-compile \
--no-index \
--no-emit-index-url \
--output-file requirements/ci.txt \
requirements/base.txt \
requirements/test-tools.in

# Dev depedencies - exact same set as CI + some extra tooling
pip-compile \
--no-index \
--no-emit-index-url \
--output-file requirements/dev.txt \
requirements/ci.txt \
requirements/dev.in
14 changes: 7 additions & 7 deletions backend/requirements/base.txt
Expand Up @@ -2,11 +2,11 @@
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --no-index requirements/base.in
# pip-compile --no-emit-index-url requirements/base.in
#
aiodns==2.0.0
# via -r requirements/base.in
aiohttp==3.6.1
aiohttp==3.7.4.post0
# via -r requirements/base.in
amqp==2.5.1
# via kombu
Expand Down Expand Up @@ -87,7 +87,7 @@ django-solo==1.1.3
# django-auth-adfs-db
# django-camunda
# zgw-consumers
django==2.2.16
django==2.2.19
# via
# -r requirements/base.in
# django-appconf
Expand All @@ -108,7 +108,7 @@ django==2.2.16
# zgw-consumers
djangorestframework-camel-case==1.2.0
# via -r requirements/base.in
djangorestframework==3.11.0
djangorestframework==3.12.2
# via
# -r requirements/base.in
# drf-spectacular
Expand All @@ -134,9 +134,7 @@ idna==2.8
# requests
# yarl
importlib-metadata==0.23
# via
# jsonschema
# kombu
# via kombu
inflection==0.3.1
# via
# django-camunda
Expand Down Expand Up @@ -233,6 +231,8 @@ tablib[xlsx]==0.14.0
# django-import-export
text-unidecode==1.3
# via faker
typing-extensions==3.7.4.3
# via aiohttp
uritemplate==3.0.1
# via drf-spectacular
urllib3==1.25.5
Expand Down
14 changes: 8 additions & 6 deletions backend/requirements/ci.txt
Expand Up @@ -2,11 +2,11 @@
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --no-index --output-file=requirements/ci.txt requirements/base.txt requirements/test-tools.in
# pip-compile --no-emit-index-url --output-file=requirements/ci.txt requirements/base.txt requirements/test-tools.in
#
aiodns==2.0.0
# via -r requirements/base.txt
aiohttp==3.6.1
aiohttp==3.7.4.post0
# via -r requirements/base.txt
amqp==2.5.1
# via
Expand Down Expand Up @@ -128,7 +128,7 @@ django-solo==1.1.3
# zgw-consumers
django-webtest==1.9.7
# via -r requirements/test-tools.in
django==2.2.16
django==2.2.19
# via
# -r requirements/base.txt
# django-appconf
Expand All @@ -149,7 +149,7 @@ django==2.2.16
# zgw-consumers
djangorestframework-camel-case==1.2.0
# via -r requirements/base.txt
djangorestframework==3.11.0
djangorestframework==3.12.2
# via
# -r requirements/base.txt
# drf-spectacular
Expand Down Expand Up @@ -189,7 +189,6 @@ idna==2.8
importlib-metadata==0.23
# via
# -r requirements/base.txt
# jsonschema
# kombu
inflection==0.3.1
# via
Expand Down Expand Up @@ -346,7 +345,10 @@ toml==0.10.2
typed-ast==1.4.1
# via black
typing-extensions==3.7.4.3
# via black
# via
# -r requirements/base.txt
# aiohttp
# black
uritemplate==3.0.1
# via
# -r requirements/base.txt
Expand Down
2 changes: 1 addition & 1 deletion backend/requirements/dev.in
@@ -1,5 +1,5 @@
# Helpers
pip-tools
pip-tools~=5.0
bumpversion

# Debug tooling
Expand Down
10 changes: 5 additions & 5 deletions backend/requirements/dev.txt
Expand Up @@ -2,11 +2,11 @@
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --no-index --output-file=requirements/dev.txt requirements/ci.txt requirements/dev.in
# pip-compile --no-emit-index-url --output-file=requirements/dev.txt requirements/ci.txt requirements/dev.in
#
aiodns==2.0.0
# via -r requirements/ci.txt
aiohttp==3.6.1
aiohttp==3.7.4.post0
# via -r requirements/ci.txt
alabaster==0.7.12
# via sphinx
Expand Down Expand Up @@ -151,7 +151,7 @@ django-solo==1.1.3
# zgw-consumers
django-webtest==1.9.7
# via -r requirements/ci.txt
django==2.2.16
django==2.2.19
# via
# -r requirements/ci.txt
# ddt-api-calls
Expand All @@ -174,7 +174,7 @@ django==2.2.16
# zgw-consumers
djangorestframework-camel-case==1.2.0
# via -r requirements/ci.txt
djangorestframework==3.11.0
djangorestframework==3.12.2
# via
# -r requirements/ci.txt
# drf-spectacular
Expand Down Expand Up @@ -218,7 +218,6 @@ imagesize==1.2.0
importlib-metadata==0.23
# via
# -r requirements/ci.txt
# jsonschema
# kombu
inflection==0.3.1
# via
Expand Down Expand Up @@ -430,6 +429,7 @@ typed-ast==1.4.1
typing-extensions==3.7.4.3
# via
# -r requirements/ci.txt
# aiohttp
# black
uritemplate==3.0.1
# via
Expand Down

0 comments on commit 054c142

Please sign in to comment.