Skip to content

Commit

Permalink
Avoid using extras in Pipfiles
Browse files Browse the repository at this point in the history
This is a workaround for the issue described in pypa/pipenv#3026 (comment). It can be reverted as soon as the fix is released.
  • Loading branch information
ngrippa committed Oct 29, 2018
1 parent a82d085 commit 635b3fe
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion docker/cilantro-convert-worker/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ name = "pypi"

[packages]
watchdog = "*"
celery = {extras = ["redis"]}
celery = "*"
redis = "*"
pillow = "*"
PyPDF2 = "*"
pdftotext = "*"
Expand Down
3 changes: 2 additions & 1 deletion docker/cilantro-default-worker/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ name = "pypi"

[packages]
watchdog = "*"
celery = {extras = ["redis"]}
celery = "*"
redis = "*"
jinja2 = "*"
PyPDF2 = "*"
pdftotext = "*"
Expand Down
3 changes: 2 additions & 1 deletion docker/cilantro-nlp-worker/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ name = "pypi"

[packages]
watchdog = "*"
celery = {extras = ["redis"]}
celery = "*"
redis = "*"

[dev-packages]

Expand Down
3 changes: 2 additions & 1 deletion docker/cilantro-service/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ name = "pypi"

[packages]
watchdog = "*"
celery = {extras = ["redis"]}
celery = "*"
redis = "*"
flask = "*"
flask-cors = "*"
Flask-HTTPAuth = "*"
Expand Down
3 changes: 2 additions & 1 deletion docker/cilantro-test/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ name = "pypi"
[packages]
flask = "*"
pyyaml = "*"
celery = {extras = ["redis"]}
celery = "*"
redis = "*"
pillow = "*"
docker-compose = "*"
PyPDF2 = "*"
Expand Down

0 comments on commit 635b3fe

Please sign in to comment.