Commit Graph

2058 Commits

Author SHA1 Message Date
Andrew Chen Wang
7be855975b
Add dedicated websockets package
Ref: https://github.com/encode/uvicorn/issues/797

There used to be a package automatically installed; not anymore I guess. This came from a separate package and not cookiecutter-django, but the installation was similar.
2020-10-07 12:33:00 -04:00
pyup-bot
6e3f6acf07 Update pytest from 6.1.0 to 6.1.1 2020-10-04 06:03:31 -07:00
Bruno Alla
a5ab4ae1cb
Merge pull request #2874 from pydanny/mypy-django-stubs
Update mypy and django-stubs
2020-10-04 12:13:57 +01:00
Bruno Alla
b8012a54d2
Merge pull request #2876 from pydanny/update/pre-commit-autoupdate
Auto-update pre-commit hooks
2020-10-04 12:13:23 +01:00
pyup-bot
42b41b7215 Update flake8 from 3.8.3 to 3.8.4 2020-10-02 17:27:05 -07:00
github-actions[bot]
f1e87f264d Auto-update pre-commit hooks 2020-10-03 00:26:55 +00:00
Bruno Alla
26f2a3d7ba Fix mypy error
my_awesome_project/users/admin.py:15: error: No overload variant of "__add__" of "tuple" matches argument type "List[Tuple[Optional[str], _FieldOpts]]"
my_awesome_project/users/admin.py:15: note: Possible overload variants:
my_awesome_project/users/admin.py:15: note:     def __add__(self, Tuple[Tuple[str, Dict[str, Tuple[str]]], ...]) -> Tuple[Tuple[str, Dict[str, Tuple[str]]], ...]
my_awesome_project/users/admin.py:15: note:     def __add__(self, Tuple[Any, ...]) -> Tuple[Any, ...]
my_awesome_project/users/admin.py:15: note: Right operand is of type "Union[Tuple[Tuple[Optional[str], _FieldOpts], ...], List[Tuple[Optional[str], _FieldOpts]]]"
2020-10-01 20:01:26 +01:00
Bruno Alla
689c768abf Fix mypy error
users/tests/test_views.py:67: error: unused 'type: ignore' comment
2020-10-01 19:16:22 +01:00
Bruno Alla
ef48467458
Merge pull request #2873 from pydanny/pyup-update-ipdb-0.13.3-to-0.13.4
Update ipdb to 0.13.4
2020-10-01 18:09:16 +01:00
Bruno Alla
4225c1b1ab Bump mypy and django-stubs versions 2020-10-01 17:07:17 +01:00
Bruno Alla
070dada241
Merge pull request #2867 from pydanny/update/pre-commit-autoupdate 2020-10-01 17:02:51 +01:00
Bruno Alla
f54bfe3025
Merge pull request #2866 from pydanny/pyup-update-uvicorn-0.11.8-to-0.12.1
Update uvicorn to 0.12.1
2020-10-01 17:02:34 +01:00
Bruno Alla
656ce7b9e3
Merge pull request #2863 from pydanny/pyup-update-sentry-sdk-0.17.7-to-0.18.0
Update sentry-sdk to 0.18.0
2020-10-01 17:01:30 +01:00
Bruno Alla
1339dcb7ff
Merge pull request #2862 from pydanny/pyup-update-djangorestframework-3.11.1-to-3.12.1
Update djangorestframework to 3.12.1
2020-10-01 17:01:09 +01:00
Bruno Alla
9c426725b1
Merge pull request #2859 from pydanny/pyup-update-pytest-6.0.2-to-6.1.0 2020-10-01 17:00:38 +01:00
pyup-bot
58c06e558f Update ipdb from 0.13.3 to 0.13.4 2020-10-01 08:58:53 -07:00
github-actions[bot]
aa6fd53813 Auto-update pre-commit hooks 2020-10-01 00:27:34 +00:00
pyup-bot
604325a1c6 Update uvicorn from 0.11.8 to 0.12.1 2020-09-30 06:31:39 -07:00
pyup-bot
ae346d4a6f Update sentry-sdk from 0.17.7 to 0.18.0 2020-09-29 10:50:08 -07:00
pyup-bot
6fb51ed491 Update djangorestframework from 3.11.1 to 3.12.1 2020-09-28 12:11:17 -07:00
pyup-bot
11afe7af59 Update pytest from 6.0.2 to 6.1.0 2020-09-27 07:41:24 -07:00
pyup-bot
d5cb85ed9c Update django-debug-toolbar from 3.1 to 3.1.1 2020-09-24 10:22:21 -07:00
Bruno Alla
8e062157a1
Merge pull request #2847 from pydanny/pyup-update-sentry-sdk-0.17.6-to-0.17.7
Update sentry-sdk to 0.17.7
2020-09-23 13:45:01 +01:00
pyup-bot
762f3b3ae2 Update sentry-sdk from 0.17.6 to 0.17.7 2020-09-22 02:49:28 -07:00
pyup-bot
e715b8f43d Update django-debug-toolbar from 3.0 to 3.1 2020-09-21 14:13:08 -07:00
Arnav Choudhury
b064e09f12
Adding GitHub-Action CI Option (#2837) 2020-09-21 11:20:24 +01:00
Bruno Alla
55aa86878b
Merge pull request #2842 from pydanny/pyup-update-django-debug-toolbar-2.2-to-3.0
Update django-debug-toolbar to 3.0
2020-09-21 10:37:20 +01:00
github-actions[bot]
561e9744bf Auto-update pre-commit hooks 2020-09-21 00:26:05 +00:00
pyup-bot
859766941d Update django-debug-toolbar from 2.2 to 3.0 2020-09-20 12:27:04 -07:00
Arnav Choudhury
2408fc7756 Added a comment to relevant part of documentation. Also removed the unnecessary scheme key as the default value for scheme is https anyway 2020-09-18 22:14:18 +05:30
pyup-bot
ade8aede47 Update django-extensions from 3.0.8 to 3.0.9 2020-09-17 15:04:31 -07:00
Arnav Choudhury
35b89997ef Made Traefik conf much easier to understand and improved redirect response to entrypoint as opposed to middleware layer that is hit after entrypoint and routing layers. 2020-09-17 22:22:42 +05:30
Bruno Alla
46b03b65df
Merge pull request #2833 from pydanny/pyup-update-sentry-sdk-0.17.5-to-0.17.6
Update sentry-sdk to 0.17.6
2020-09-16 14:18:36 +02:00
pyup-bot
c06869367d Update sentry-sdk from 0.17.5 to 0.17.6 2020-09-16 04:29:06 -07:00
pyup-bot
fa85682910 Update pytest-django from 3.9.0 to 3.10.0 2020-09-16 04:28:56 -07:00
Bruno Alla
a2c4453cf5 Fix isort errors 2020-09-16 09:39:02 +01:00
Daniel Feldroy
ec3922cfe6
Give admin_forms the forms namespace
This will make extending various signup and registration forms easier.
2020-09-14 11:36:47 -07:00
Bruno Alla
c62c3eada8
Merge pull request #2829 from pydanny/revert/celery-4.4.6
Downgrade Celery to 4.4.6
2020-09-14 18:34:33 +02:00
Bruno Alla
b76d8d4f02 Revert Celery to 4.4.6
It looks like 4.4.7 has some issues with Redis broker:

https://github.com/celery/celery/issues/6285
2020-09-14 17:24:16 +01:00
pyup-bot
584267d8a4 Update sentry-sdk from 0.17.4 to 0.17.5 2020-09-14 08:03:16 -07:00
Bruno Alla
7780065025
Merge pull request #2826 from pydanny/pyup-update-coverage-5.2.1-to-5.3 2020-09-14 12:30:50 +02:00
pyup-bot
f1600ef17b Update coverage from 5.2.1 to 5.3 2020-09-14 01:40:37 -07:00
pyup-bot
8b4c87fd12 Update django-storages from 1.10 to 1.10.1 2020-09-14 01:40:33 -07:00
pyup-bot
a6b88a9370 Update django-storages from 1.10 to 1.10.1 2020-09-14 01:40:32 -07:00
Bruno Alla
b78c244e4d
Merge pull request #2814 from arnav13081994/update-traefik-version
Updating Traefik version from 2.0 to 2.2.11
2020-09-12 12:22:39 +02:00
Bruno Alla
62c7f40d14
Merge pull request #2819 from pydanny/pyup-update-pytest-6.0.1-to-6.0.2 2020-09-12 12:22:03 +02:00
pyup-bot
12cc96817d Update pytest from 6.0.1 to 6.0.2 2020-09-11 19:16:17 -07:00
pyup-bot
192ca300af Update django-anymail from 7.2.1 to 8.0 2020-09-11 15:59:49 -07:00
pyup-bot
bc0805549b Update django-anymail from 7.2.1 to 8.0 2020-09-11 15:59:48 -07:00
pyup-bot
8241615edd Update django-anymail from 7.2.1 to 8.0 2020-09-11 15:59:47 -07:00
pyup-bot
e591022c6f Update django-anymail from 7.2.1 to 8.0 2020-09-11 15:59:46 -07:00
pyup-bot
99c9b04319 Update django-anymail from 7.2.1 to 8.0 2020-09-11 15:59:45 -07:00
pyup-bot
e5c2f82949 Update django-anymail from 7.2.1 to 8.0 2020-09-11 15:59:45 -07:00
pyup-bot
8cddc2f740 Update django-anymail from 7.2.1 to 8.0 2020-09-11 15:59:44 -07:00
pyup-bot
11d089c859 Update django-anymail from 7.2.1 to 8.0 2020-09-11 15:59:43 -07:00
pyup-bot
13ca7bf4a4 Update django-anymail from 7.2.1 to 8.0 2020-09-11 15:59:42 -07:00
Arnav Choudhury
e1922807aa Updating Traefik version from 2.0 to 2.2.11 2020-09-11 21:47:00 +05:30
github-actions[bot]
806080e53e Auto-update pre-commit hooks 2020-09-11 00:24:40 +00:00
pyup-bot
8df38802f3 Update sentry-sdk from 0.17.3 to 0.17.4 2020-09-09 15:41:47 -07:00
Bruno Alla
9b81501a1b
Merge pull request #2800 from pydanny/gitignore-cleanup
Clean up nested venv files from `.gitignore`
2020-09-09 14:19:39 +02:00
Arnav Choudhury
536e86ecad
Traeffik and Django dockerfile changes (#2801) 2020-09-08 09:04:10 +01:00
Bruno Alla
2a0f40e767 Clean up nested venv files from .gitignore
Fixes #2226
2020-09-07 15:30:37 +02:00
Bruno Alla
ffaec00084
Remove --no-binary option for psycopg2 (#2798)
It was required in 2.7, but it's now the default in 2.8
2020-09-07 14:10:57 +01:00
Bruno Alla
0b3dd776c6
Fix options for sphinx-autobuild in docs Makefile (#2799)
Fix #2796
2020-09-07 14:06:18 +01:00
Wes Turner
624dd94dd3
Add :z/:Z to mounted volumes in {local,production}.yml (#2663) 2020-09-07 13:51:52 +01:00
Bruno Alla
49479fb118
Merge pull request #2797 from pydanny/pyup-update-psycopg2-binary-2.8.5-to-2.8.6 2020-09-07 14:39:03 +02:00
Arnav Choudhury
7fb71507d2
Updated Gitlab CI to use Python 3.8 instead of Python 3.7 (#2794) 2020-09-07 13:28:49 +01:00
Bruno Alla
cbc46cb34f Update psycopg2 from 2.8.5 to 2.8.6 2020-09-07 14:23:02 +02:00
pyup-bot
9cdae535b3 Update psycopg2-binary from 2.8.5 to 2.8.6 2020-09-06 19:12:31 -07:00
github-actions[bot]
77a00376e8 Auto-update pre-commit hooks 2020-09-05 00:40:41 +00:00
pyup-bot
c6c0bd9289 Update django-extensions from 3.0.7 to 3.0.8 2020-09-04 08:26:40 -07:00
github-actions[bot]
84713cf724 Auto-update pre-commit hooks 2020-09-04 00:24:21 +00:00
pyup-bot
a7c69639f2 Update sentry-sdk from 0.17.2 to 0.17.3 2020-09-02 02:51:48 -07:00
Bruno Alla
cc97340c25
Merge pull request #2777 from foarsitter/sentry_environment_and_performance_tracing
Add environment and traces_sample_rate keyword to sentry_sdk.init
2020-09-02 11:51:41 +02:00
pyup-bot
bd977e29af Update django-extensions from 3.0.6 to 3.0.7 2020-09-01 17:08:30 -07:00
Bruno Alla
fe36bb3574
Merge pull request #2781 from pydanny/pyup-update-django-storages-1.9.1-to-1.10 2020-09-01 22:42:12 +02:00
Bruno Alla
2217e69aa5
Merge pull request #2780 from howiezhao/patch-1 2020-09-01 22:41:07 +02:00
Bruno Alla
53b4371c09 Remove deprecated setting from django-storages 2020-09-01 22:20:02 +02:00
Bruno Alla
18da9c910d
Merge pull request #2784 from pydanny/pyup-update-sentry-sdk-0.17.1-to-0.17.2
Update sentry-sdk to 0.17.2
2020-09-01 22:04:29 +02:00
pyup-bot
007ab4aefd Update django from 3.0.9 to 3.0.10 2020-09-01 07:56:59 -07:00
pyup-bot
18c53d0a3b Update sentry-sdk from 0.17.1 to 0.17.2 2020-09-01 07:56:55 -07:00
Bruno Alla
0328a8bbaa
Merge pull request #2782 from pydanny/pyup-update-sphinx-autobuild-0.7.1-to-2020.9.1
Update sphinx-autobuild to 2020.9.1
2020-09-01 10:52:56 +02:00
pyup-bot
fe9c9b5e48 Update django-extensions from 3.0.5 to 3.0.6 2020-08-31 11:53:48 -07:00
pyup-bot
2f7a6c3013 Update sphinx-autobuild from 0.7.1 to 2020.9.1 2020-08-31 05:45:27 -07:00
pyup-bot
0c23267806 Update django-storages from 1.9.1 to 1.10 2020-08-31 00:15:41 -07:00
pyup-bot
aeefbc060f Update django-storages from 1.9.1 to 1.10 2020-08-31 00:15:40 -07:00
Howie Zhao
2c82c4e1da
chore: update document link 2020-08-29 11:59:29 +08:00
Howie Zhao
baf5e6e74e
chore: exclude venv directory 2020-08-29 11:53:24 +08:00
pyup-bot
d17321dfbe Update sentry-sdk from 0.17.0 to 0.17.1 2020-08-28 14:55:22 -07:00
Jelmer Draaijer
688739cb39 Add environment and traces_sample_rate keyword to sentry_sdk.init 2020-08-28 10:25:40 +02:00
Bruno Alla
3ab741545c
Merge pull request #2764 from pydanny/pyup-update-django-cors-headers-3.4.0-to-3.5.0
Update django-cors-headers to 3.5.0
2020-08-27 16:01:40 +02:00
Bruno Alla
7614bd9958 Merge branch 'master' into update/pre-commit-autoupdate 2020-08-27 09:52:55 +02:00
Bruno Alla
e21869c1d4 Fix black formatting issues 2020-08-27 09:41:28 +02:00
github-actions[bot]
bc58420364 Auto-update pre-commit hooks 2020-08-27 00:22:07 +00:00
pyup-bot
0dc3fe0b3d Update black from 19.10b0 to 20.8b1 2020-08-26 10:05:24 -07:00
pyup-bot
294d20d5e6 Update django-cors-headers from 3.4.0 to 3.5.0 2020-08-25 05:08:22 -07:00
pyup-bot
32b81ba02e Update sentry-sdk from 0.16.5 to 0.17.0 2020-08-24 09:54:47 -07:00
pyup-bot
cc1d297ad6 Update pre-commit from 2.6.0 to 2.7.1 2020-08-23 12:35:31 -07:00
github-actions[bot]
ba5c1a760f Auto-update pre-commit hooks 2020-08-16 00:21:36 +00:00
pyup-bot
3752997562 Update sentry-sdk from 0.16.3 to 0.16.5 2020-08-14 15:49:18 -07:00
Bruno Alla
b97d884055
Merge pull request #2749 from pydanny/pyup-update-sphinx-3.2.0-to-3.2.1
Update sphinx to 3.2.1
2020-08-14 13:40:26 +01:00
Bruno Alla
8603fd8d8c
Merge pull request #2743 from pydanny/pyup-update-factory-boy-2.12.0-to-3.0.1 2020-08-14 13:40:08 +01:00
pyup-bot
5e3abf903f Update sphinx from 3.2.0 to 3.2.1 2020-08-14 04:19:56 -07:00
Bruno Alla
0ebd35dd83 Update deprecated imports 2020-08-14 12:19:42 +01:00
Bruno Alla
ab98cb3654
Merge pull request #2747 from pydanny/update/pre-commit-autoupdate
Auto-update pre-commit hooks
2020-08-14 08:28:26 +01:00
Bruno Alla
7e87a92596 Add missing comment over settings 2020-08-14 08:12:55 +01:00
Bruno Alla
e532fb331f
Merge pull request #2745 from Andrew-Chen-Wang/patch-3 2020-08-14 08:11:44 +01:00
github-actions[bot]
aa261ddbb7 Auto-update pre-commit hooks 2020-08-14 00:20:41 +00:00
Andrew Chen Wang
d411ed9b6a
Update compressor not check whitenoise condition 2020-08-13 18:45:37 -04:00
Bruno Alla
ebd43bbd3c
Update runtime.txt 2020-08-13 20:59:56 +01:00
Andrew Chen Wang
148d6c2e29
Added noqa F405 to undefined STATIC_ROOT - flake8
* This is in addition to the PR for compressor support with AWS S3 and Google Cloud buckets
2020-08-13 10:24:51 -04:00
Andrew Chen Wang
1cb2a0c98e
Set COMPRESS_ROOT to STATIC_ROOT for compressor
Django compressor also recommends the `COMPRESS_ROOT` be the STATIC_ROOT. This also makes sure the utils is set up properly so that the CACHE directory is actually publicly available (it'll be inside the static directory as a subdirectory).
2020-08-13 10:13:40 -04:00
Andrew Chen Wang
55d3d95333
Add STATICFILES_STORAGE with compressor support 2020-08-13 10:08:53 -04:00
pyup-bot
2d410c5df9 Update factory-boy from 2.12.0 to 3.0.1 2020-08-13 01:34:47 -07:00
github-actions[bot]
5ae7d718bd Auto-update pre-commit hooks 2020-08-12 11:56:34 +00:00
Bruno Alla
499af1b203 Update isort in pre-commit hook config 2020-08-12 12:31:32 +01:00
Bruno Alla
5a3266f0f2
Merge pull request #2721 from janfabry/issue-2711/isort-pre-commit 2020-08-12 12:28:20 +01:00
Bruno Alla
a5af9baedb
Merge pull request #2693 from enchance/wrong-version 2020-08-11 16:37:15 +01:00
Bruno Alla
97e18889c6 Revert "Added name to CONTRIBUTORS.txt"
This reverts commit 160ed6cb
2020-08-11 16:05:14 +01:00
pyup-bot
85cfe02437 Update flake8-isort from 3.0.1 to 4.0.0 2020-08-11 01:42:07 -07:00
pyup-bot
dc03478717 Update django-extensions from 3.0.4 to 3.0.5 2020-08-10 02:38:22 -07:00
pyup-bot
2dc2125817 Update sphinx from 3.1.2 to 3.2.0 2020-08-08 15:39:21 -07:00
Bruno Alla
1b5997466c
Merge pull request #2726 from pydanny/pyup-update-django-anymail-7.2-to-7.2.1 2020-08-06 11:28:34 +02:00
Bruno Alla
2fe80aea3c
Merge pull request #2725 from pydanny/pyup-update-pylint-django-2.2.0-to-2.3.0
Update pylint-django to 2.3.0
2020-08-06 11:28:18 +02:00
Bruno Alla
b867716206
Merge pull request #2724 from pydanny/pyup-update-django-extensions-3.0.3-to-3.0.4
Update django-extensions to 3.0.4
2020-08-06 11:27:59 +02:00
pyup-bot
bdc9ad1997 Update django-anymail from 7.2 to 7.2.1 2020-08-05 13:37:05 -07:00
pyup-bot
f65d5332af Update django-anymail from 7.2 to 7.2.1 2020-08-05 13:37:04 -07:00
pyup-bot
92f466a3a7 Update django-anymail from 7.2 to 7.2.1 2020-08-05 13:37:03 -07:00
pyup-bot
dac0ee23e4 Update django-anymail from 7.2 to 7.2.1 2020-08-05 13:37:02 -07:00
pyup-bot
0cbb2c46c4 Update django-anymail from 7.2 to 7.2.1 2020-08-05 13:37:01 -07:00
pyup-bot
0a6c8bf40f Update django-anymail from 7.2 to 7.2.1 2020-08-05 13:37:01 -07:00
pyup-bot
9536e75773 Update django-anymail from 7.2 to 7.2.1 2020-08-05 13:37:00 -07:00
pyup-bot
e869f355b5 Update django-anymail from 7.2 to 7.2.1 2020-08-05 13:36:59 -07:00
pyup-bot
405be0114f Update django-anymail from 7.2 to 7.2.1 2020-08-05 13:36:58 -07:00
pyup-bot
35a9a02bae Update pylint-django from 2.2.0 to 2.3.0 2020-08-05 05:39:58 -07:00
pyup-bot
e288f1ff4f Update django-extensions from 3.0.3 to 3.0.4 2020-08-05 04:44:52 -07:00
pyup-bot
0ea47997e0 Update djangorestframework from 3.11.0 to 3.11.1 2020-08-05 04:44:48 -07:00
Jan Fabry
dd6c76f3be Run isort as pre-commit hook
Run it before flake8, so any errors will get fixed automatically.

Fixes #2711
2020-08-04 17:06:37 +02:00
pyup-bot
8a74fee736 Update whitenoise from 5.1.0 to 5.2.0 2020-08-04 04:15:53 -07:00
Bruno Alla
f2adb7e48b
Merge pull request #2718 from pydanny/pyup-update-django-3.0.8-to-3.0.9
Update django to 3.0.9
2020-08-03 10:14:41 +02:00
Bruno Alla
a68918a22a
Merge pull request #2717 from pydanny/pyup-update-sentry-sdk-0.16.2-to-0.16.3
Update sentry-sdk to 0.16.3
2020-08-03 09:56:44 +02:00
Bruno Alla
a575c28b39
Merge pull request #2716 from pydanny/pyup-update-celery-4.4.6-to-4.4.7
Update celery to 4.4.7
2020-08-03 09:56:31 +02:00
Bruno Alla
3a7b3f5626
Merge pull request #2715 from pydanny/pyup-update-uvicorn-0.11.7-to-0.11.8
Update uvicorn to 0.11.8
2020-08-03 09:56:06 +02:00
pyup-bot
7e8e10de92 Update django from 3.0.8 to 3.0.9 2020-08-03 00:55:51 -07:00
pyup-bot
db8de7dafc Update sentry-sdk from 0.16.2 to 0.16.3 2020-08-01 14:41:44 -07:00
pyup-bot
7cf0bbdf0d Update celery from 4.4.6 to 4.4.7 2020-07-31 12:52:55 -07:00
pyup-bot
a5f6b56c38 Update uvicorn from 0.11.7 to 0.11.8 2020-07-31 10:04:55 -07:00
pyup-bot
b9b7e9b7dd Update pytest from 5.4.3 to 6.0.1 2020-07-30 16:54:50 -07:00
pyup-bot
4b4bda7835 Update uvicorn from 0.11.6 to 0.11.7 2020-07-28 06:34:49 -07:00
pyup-bot
c3391c9572 Update django-anymail from 7.1.0 to 7.2 2020-07-25 12:51:40 -07:00
pyup-bot
83290cb710 Update django-anymail from 7.1.0 to 7.2 2020-07-25 12:51:40 -07:00
pyup-bot
8fa56b3c6d Update django-anymail from 7.1.0 to 7.2 2020-07-25 12:51:39 -07:00
pyup-bot
1d8f637f9d Update django-anymail from 7.1.0 to 7.2 2020-07-25 12:51:38 -07:00
pyup-bot
14fad9247b Update django-anymail from 7.1.0 to 7.2 2020-07-25 12:51:37 -07:00
pyup-bot
a5e71ab8bf Update django-anymail from 7.1.0 to 7.2 2020-07-25 12:51:36 -07:00
pyup-bot
41dc9424f8 Update django-anymail from 7.1.0 to 7.2 2020-07-25 12:51:35 -07:00
pyup-bot
756031c351 Update django-anymail from 7.1.0 to 7.2 2020-07-25 12:51:34 -07:00
pyup-bot
a706ab826c Update django-anymail from 7.1.0 to 7.2 2020-07-25 12:51:33 -07:00
Bruno Alla
c085afef18
Merge pull request #2700 from pydanny/pyup-update-hiredis-1.0.1-to-1.1.0 2020-07-24 18:20:45 +01:00
pyup-bot
70c11fa894 Update django-crispy-forms from 1.9.1 to 1.9.2 2020-07-24 09:58:32 -07:00
pyup-bot
ce0f2363e0 Update hiredis from 1.0.1 to 1.1.0 2020-07-24 09:58:28 -07:00
pyup-bot
ed8e3073c6 Update hiredis from 1.0.1 to 1.1.0 2020-07-24 09:58:27 -07:00
Bruno Alla
8d52025c20
Merge pull request #2699 from pydanny/fix-pyup-duplicated-requirements
Import base requirements without the leading dot
2020-07-24 17:55:47 +01:00
Bruno Alla
e2910a3222
Merge pull request #2694 from Andrew-Chen-Wang/patch-7 2020-07-24 17:40:23 +01:00
Bruno Alla
21c56bb97a Don't include base requirements with dot in front
See https://github.com/pyupio/pyup/issues/390
2020-07-24 17:38:29 +01:00
Bruno Alla
3dedd4dd4b
Merge pull request #2698 from pydanny/pyup-update-uvicorn-0.11.5-to-0.11.6
Update uvicorn from 0.11.5 to 0.11.6
2020-07-24 17:26:54 +01:00
Bruno Alla
cb0020cd1d
Merge pull request #2697 from pydanny/pyup-update-coverage-5.2-to-5.2.1
Update coverage to 5.2.1
2020-07-24 17:21:48 +01:00
Bruno Alla
6903daeddd
Merge pull request #2648 from Andrew-Chen-Wang/patch-3 2020-07-24 17:11:19 +01:00
pyup-bot
c6dd8471dd Update coverage from 5.2 to 5.2.1 2020-07-24 09:10:59 -07:00
Bruno Alla
6fffaf13ca Fix version for django-cors-headers 2020-07-24 16:54:39 +01:00
Bruno Alla
8d5542d675
Merge pull request #2683 from aadithpm/master 2020-07-24 16:47:42 +01:00
Andrew Chen Wang
c57b8976b0
Update {{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/utils/context_processors.py
Co-authored-by: Bruno Alla <browniebroke@users.noreply.github.com>
2020-07-24 11:29:11 -04:00
Andrew Chen Wang
689e22f5b0
Be explicit in context processor 2020-07-23 22:47:20 -04:00
enchance
160ed6cb6d Added name to CONTRIBUTORS.txt 2020-07-24 01:00:56 +08:00
enchance
35d57d048b Compatibility issue for mypy 0.782. Must be mypy 0.770 because it uses djago-stubs 1.5.0. 2020-07-24 00:53:56 +08:00
Bruno Alla
95c7584cfb
Merge pull request #2690 from pydanny/pyup-update-sentry-sdk-0.16.1-to-0.16.2
Update sentry-sdk to 0.16.2
2020-07-23 11:37:29 +01:00
pyup-bot
9bdb433538 Update sentry-sdk from 0.16.1 to 0.16.2 2020-07-22 10:11:16 -07:00
pyup-bot
d31ee9afe7 Update pylint-django from 2.1.0 to 2.2.0 2020-07-22 07:23:20 -07:00
Andrew Chen Wang
fee9402e44
Use raw Jinja2 for cookiecutter template context
Co-authored-by: Bruno Alla <browniebroke@users.noreply.github.com>
2020-07-21 00:02:14 -04:00
Aadith PM
ff69126087
Update {{cookiecutter.project_slug}}/config/settings/base.py
Co-authored-by: Bruno Alla <browniebroke@users.noreply.github.com>
2020-07-20 11:21:06 -05:00
Aadith PM
20986bafb7 Fix style error with quotes 2020-07-18 20:37:03 -05:00
Aadith PM
eafe74262a Added django-cors-headers setup steps to base settings 2020-07-18 19:53:55 -05:00
Bruno Alla
8c8d9c1825
Merge pull request #2662 from pydanny/pyup-update-pytest-sugar-0.9.3-to-0.9.4
Update pytest-sugar to 0.9.4
2020-07-18 14:39:55 +01:00
pyup-bot
349f7e1141 Update uvicorn from 0.11.5 to 0.11.6 2020-07-17 07:46:56 -07:00
Aadith PM
f4ce1db0b5
Update requirements to include django-cors-headers with DRF [PR #2650] 2020-07-17 08:37:15 -05:00
Bruno Alla
949d3dfbd5
Merge pull request #2678 from pydanny/pyup-update-django-extensions-3.0.2-to-3.0.3
Update django-extensions to 3.0.3
2020-07-17 11:22:03 +01:00
Bruno Alla
148bfd8f0c
Merge pull request #2677 from pydanny/pyup-update-pylint-django-2.0.15-to-2.1.0
Update pylint-django to 2.1.0
2020-07-17 11:21:42 +01:00
pyup-bot
7a48cacdf7 Update django-extensions from 3.0.2 to 3.0.3 2020-07-14 07:20:16 -07:00
pyup-bot
a0c73d942f Update pylint-django from 2.0.15 to 2.1.0 2020-07-12 06:51:40 -07:00
pyup-bot
fd3462c2b9 Update sentry-sdk from 0.16.0 to 0.16.1 2020-07-10 12:02:49 -07:00
pyup-bot
5f7d23ff78 Update flake8-isort from 3.0.0 to 3.0.1 2020-07-08 01:33:25 -07:00
Bruno Alla
8ebb464b33
Fix beat -> worker 2020-07-07 18:10:37 +01:00
pyup-bot
60dfb4c5d3 Update pytest-sugar from 0.9.3 to 0.9.4 2020-07-06 13:20:16 -07:00
Bruno Alla
22d998ac58
Merge pull request #2643 from Tusky/patch-1 2020-07-06 17:31:14 +01:00
Bruno Alla
3839b1cb72
Merge pull request #2658 from pydanny/pyup-update-sphinx-3.1.1-to-3.1.2
Update sphinx to 3.1.2
2020-07-06 17:29:57 +01:00
pyup-bot
b8dce8d6db Update coverage from 5.1 to 5.2 2020-07-06 06:13:23 -07:00
pyup-bot
21fe485d72 Update sphinx from 3.1.1 to 3.1.2 2020-07-05 17:16:14 -07:00
Bruno Alla
a01fc583be Update requirements in base.txt 2020-07-04 16:15:10 +01:00
Bruno Alla
22e0dba9bd Split down condition into 2 lines in base.txt
maybe this might fix  the issue with PyUP not processing the file?
2020-07-04 16:09:57 +01:00
Bruno Alla
4a4dd056d1
Merge pull request #2583 from pydanny/2581-heroku-compressor-error
Fix OfflineGenerationError with Heroku + Django Compressor
2020-07-04 15:59:12 +01:00
Bruno Alla
33167946e0 Update Heroku runtime to latest bugfix 2020-07-04 15:25:27 +01:00
Bruno Alla
68116dcdea Fix issue with Heroku + Django Compressor 2020-07-04 15:20:51 +01:00
pyup-bot
09e7fce7de Pin sphinx-autobuild to latest version 0.7.1 2020-07-04 14:55:05 +01:00
Bruno Alla
19c151ba55
Merge pull request #2555 from hanhanhan/docs 2020-07-04 14:27:21 +01:00
Bruno Alla
f8164606d9
Merge pull request #2653 from pydanny/pyup-update-sentry-sdk-0.15.1-to-0.16.0
Update sentry-sdk to 0.16.0
2020-07-04 14:24:37 +01:00
Bruno Alla
d8df617145
Merge pull request #2652 from pydanny/pyup-update-django-extensions-3.0.1-to-3.0.2 2020-07-03 10:39:10 +01:00
pyup-bot
bf95ee5ac1 Update sentry-sdk from 0.15.1 to 0.16.0 2020-07-03 02:35:22 -07:00
pyup-bot
f5a177712c Update django-extensions from 3.0.1 to 3.0.2 2020-07-01 13:51:47 -07:00
pyup-bot
69473a4f96 Update pre-commit from 2.5.1 to 2.6.0 2020-07-01 13:51:43 -07:00
Andrew Chen Wang
53e2ba2a66
Update ugettext_lazy to gettext_lazy in models.py 2020-06-30 10:13:51 -04:00
Andrew Chen Wang
21c5b78714
Update ugettext_lazy to gettext_lazy in views.py 2020-06-30 10:12:53 -04:00
Andrew Chen Wang
69611313c9
Add author name and description to HTML meta 2020-06-30 10:01:50 -04:00
Bruno Alla
8d066b3ab4 Use watchgod instead of watchdog 2020-06-29 22:46:16 +01:00
Bruno Alla
01437669a2 Merge branch 'master' into yotamtal-master 2020-06-29 22:42:54 +01:00
Bruno Alla
9af7b3ad6d Missing RUN command in Dockerfile 2020-06-29 21:52:10 +01:00
Bruno Alla
bed885f001 Comment out all lines related to LaTeX 2020-06-29 21:51:33 +01:00
Bruno Alla
196167490d Merge branch 'master' into docs
# Conflicts:
#	{{cookiecutter.project_slug}}/requirements/local.txt
2020-06-29 21:48:17 +01:00
pyup-bot
435a0c0276 Update django-extensions from 3.0.0 to 3.0.1 2020-06-29 13:44:24 -07:00
Bruno Alla
a52078ec47
Merge pull request #2644 from pydanny/pyup-update-django-extensions-2.2.9-to-3.0.0
Update django-extensions to 3.0.0
2020-06-29 21:43:39 +01:00
Andrew Chen Wang
a9688adc0e
Update ugettext_lazy to gettext_lazy 2020-06-29 15:27:53 -04:00
pyup-bot
8447699c93 Update django-extensions from 2.2.9 to 3.0.0 2020-06-29 05:35:40 -07:00
Richard Hajdu
e1cd81e28c
Gulp watcher fix for win10 fixes #2642
Fix for browsersync and file watchers not working correctly on windows.
2020-06-28 18:38:29 +02:00
Hannah Lazarus
916157e500
Update {{cookiecutter.project_slug}}/docs/_source/howto.rst
Co-authored-by: Bruno Alla <browniebroke@users.noreply.github.com>
2020-06-27 14:11:57 -04:00
Hannah Lazarus
8c2f49ad38
Update {{cookiecutter.project_slug}}/compose/local/docs/Dockerfile
sounds good!

Co-authored-by: Bruno Alla <browniebroke@users.noreply.github.com>
2020-06-27 13:57:50 -04:00
Bruno Alla
2d2f513cba
Merge pull request #2639 from pydanny/pyup-update-ipdb-0.13.2-to-0.13.3
Update ipdb to 0.13.3
2020-06-23 18:33:47 +01:00
pyup-bot
f3a511a656 Update ipdb from 0.13.2 to 0.13.3 2020-06-23 08:34:22 -07:00
pyup-bot
4eca81edc2 Update mypy from 0.781 to 0.782 2020-06-23 03:55:23 -07:00
Bruno Alla
e9fa8d566c
Merge pull request #2636 from pydanny/bump-base-deps
Update base requirements to latest version
2020-06-21 15:08:28 +01:00
Bruno Alla
e095ee9f93
Merge pull request #2600 from tanoabeleyra/s3-cdn
Allow to use a CDN with S3
2020-06-21 15:07:35 +01:00
Bruno Alla
8b3ee3cfe5
Merge pull request #2610 from Andrew-Chen-Wang/patch-2 2020-06-21 14:43:25 +01:00
Bruno Alla
aadf66185c Update base requirements to latest version 2020-06-21 14:26:40 +01:00
Bruno Alla
fe8a939611 Bump flake8 in pre-commit config 2020-06-21 14:23:48 +01:00
Bruno Alla
7a0ba0fa9d
Merge pull request #2635 from AsheKR/user-api-serializer-get-user-model 2020-06-21 14:13:40 +01:00
Bruno Alla
c0f391ca87
Merge pull request #2634 from pydanny/pyup-update-mypy-0.780-to-0.781
Update mypy to 0.781
2020-06-21 14:09:21 +01:00
Bruno Alla
723feb15c1
Merge pull request #2625 from pydanny/pyup-update-sphinx-3.0.4-to-3.1.1 2020-06-21 14:08:58 +01:00
Bruno Alla
5e435a1c26
Merge pull request #2622 from pydanny/pyup-update-pre-commit-2.4.0-to-2.5.1 2020-06-21 14:08:34 +01:00
Bruno Alla
36e4fd7361
Merge pull request #2616 from pydanny/pyup-update-collectfast-2.1.0-to-2.2.0
Update collectfast to 2.2.0
2020-06-21 14:08:18 +01:00
Gil
88f9a6c289 Replace User by get_user_model 2020-06-21 16:13:42 +09:00
pyup-bot
d979c342d6 Update mypy from 0.780 to 0.781 2020-06-20 08:51:49 -07:00
pyup-bot
d3a000d76d Update sentry-sdk from 0.14.4 to 0.15.1 2020-06-18 04:45:15 -07:00
Bruno Alla
27b905e7bc
Merge pull request #2618 from pydanny/pyup-update-flake8-3.8.2-to-3.8.3 2020-06-17 23:11:00 +01:00
Bruno Alla
91b58f033a
Merge pull request #2612 from pydanny/pyup-update-mypy-0.770-to-0.780
Update mypy to 0.780
2020-06-17 23:09:46 +01:00
Andrew Chen Wang
89b81452a9
Update Django to 3.0.7 due to CVEs
There were several CVE's that arose between 3.0.3 to 3.0.7. Updating quickly will resolve the vulnerabilities and fix several PRs.
2020-06-16 20:21:51 -04:00
pyup-bot
1b6e4994ca Update sphinx from 3.0.4 to 3.1.1 2020-06-14 03:13:04 -07:00
pyup-bot
54f8e3d672 Update pre-commit from 2.4.0 to 2.5.1 2020-06-09 16:02:00 -07:00
pyup-bot
6038a654ab Update flake8 from 3.8.2 to 3.8.3 2020-06-08 17:02:43 -07:00
pyup-bot
24e8a17d74 Update collectfast from 2.1.0 to 2.2.0 2020-06-05 17:08:27 -07:00
pyup-bot
9d0b570c51 Update mypy from 0.770 to 0.780 2020-06-03 05:12:36 -07:00
pyup-bot
9e87d4b189 Update pytest from 5.4.2 to 5.4.3 2020-06-03 00:26:13 -07:00
Andrew Chen Wang
d7f22a1158
Changed service to Docker dind 2020-05-29 18:05:44 -04:00