-
Notifications
You must be signed in to change notification settings - Fork 1
Trim dependencies #341
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
Trim dependencies #341
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,12 +19,10 @@ dependencies = [ | |
| "django-cors-headers", | ||
| "django-environ", | ||
| "django-extensions", | ||
| "django-filter", | ||
| "django-minio-storage", | ||
| "django-oauth-toolkit", | ||
| "django-resonant-settings[allauth,celery]", | ||
| "django-resonant-utils", | ||
| "django-s3-file-field[s3, minio]", | ||
| "django-resonant-utils[allauth,s3_storage]", | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These extras should have been included, based on the Resonant cookiecutter. However, this is just keeping versions in sync, not adding anything new. |
||
| "django-s3-file-field[s3]", | ||
| "django-storages[s3]", | ||
| "django-stubs-ext", | ||
| "psycopg[binary]", | ||
|
|
@@ -52,8 +50,11 @@ dependencies = [ | |
| [project.optional-dependencies] | ||
| development = [ | ||
| "django-browser-reload", | ||
| "django-debug-toolbar", | ||
| "django-click", | ||
| "django-debug-toolbar", | ||
| "django-minio-storage", | ||
| "django-resonant-utils[minio_storage]", | ||
| "django-s3-file-field[minio]", | ||
|
Comment on lines
+55
to
+57
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This MinIO stuff isn't required for production usage on Heroku nor "nabat". It is required for production usage on the Kitware-internal deployment, but unless it's getting installed with |
||
| "faker", | ||
| "ipython", | ||
| "watchdog", | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're not using
django-filterat all.