Commit graph

512 commits

Author SHA1 Message Date
Brian Helba
fad40b8003
Merge pull request #256 from bmispelon/malformed-rst-links 2021-10-25 09:05:23 -04:00
Brian Helba
8ec465de77
Merge pull request #289 from brianhelba/middleware 2021-10-25 09:03:21 -04:00
Brian Helba
7e4b425ea3 Don't run duplicate CI tasks on every PR
The "pull_request" action already runs on pushes to any branch with an open PR,
so only run the "push" action on the "master" branch.
2021-10-25 09:02:06 -04:00
Brian Helba
12e033ed1e Add CODE_OF_CONDUCT.md to the sdist 2021-10-25 08:57:16 -04:00
Brian Helba
38534a7caf Merge remote-tracking branch 'origin/master' into jazzband/sync/default 2021-10-25 08:56:56 -04:00
Brian Helba
96ef5cc182
Merge pull request #297 from jazzband/fix-ci 2021-10-25 08:56:24 -04:00
Brian Helba
fa026af595 Add a pre-commit configuration 2021-10-25 08:38:39 -04:00
jazzband-bot
68cbb437cf Jazzband: Created local 'CODE_OF_CONDUCT.md' from remote 'CODE_OF_CONDUCT.md' 2021-10-25 11:14:26 +00:00
Finn-Thorben Sell
6a4a620891
add additional documentation references to asgi.py 2021-09-09 15:11:49 +02:00
Finn-Thorben Sell
2cae9838b5
add documentation to README about get_asgi_application 2021-09-09 15:08:42 +02:00
Finn-Thorben Sell
c1cb3874f2
remove fallback onto ASGIHandler
ASGIHandler is considered a django internal api with get_asgi_application being the public counterpart.
get_asgi_application is also present since the introduction of django's asgi support so the ImportError should never occur anyways.
2021-09-09 15:01:11 +02:00
Richard de Wit
1ada7d14f7
Add ASGI support
Then in your project's `asgi.py` file use this:

```python
from configurations.asgi import get_asgi_application

application = get_asgi_application()
```
2021-09-09 14:35:09 +02:00
Brian Helba
271f6fb5bb Replace references to MIDDLEWARE_CLASSES with MIDDLEWARE
MIDDLEWARE_CLASSES was removed in Django 2.0.
2021-08-31 22:01:34 -04:00
Brian Helba
d715a719a4 Use a more general structure for removing deprecated settings 2021-08-31 21:38:51 -04:00
Miro Hrončok
58a4f689ff
Require setuptools, configurations/version.py imports pkg_resources 2021-04-12 21:53:16 +02:00
Brian Helba
f85ec1fb89
Prevent an ImproperlyConfigured warning from DEFAULT_HASHING_ALGORITHM 2021-04-09 00:20:36 -04:00
Jannis Leidel
d89fe5a2cb
Rename Django's dev branch to main. (#279)
* Rename Django's dev branch to main.

More information: https://groups.google.com/g/django-developers/c/tctDuKUGosc/
Refs: https://github.com/django/django/pull/14048

* Fix test matrix.

* Remove CODEOWNERS again.

* Fix name of tox env.

* Fix test matrix.
2021-03-09 19:20:31 +01:00
Jannis Leidel
856b55bea8
Merge pull request #275 from jazzband/co
Codeowners update.
2021-01-19 16:41:05 +01:00
Jannis Leidel
3da6af02fb
Codeowners update. 2021-01-19 16:40:19 +01:00
Jannis Leidel
c8153bc081
Merge pull request #274 from jazzband/branch-protection-1
Update release.yml
2021-01-19 16:34:23 +01:00
Jannis Leidel
6fa45aba1b
Update release.yml 2021-01-19 14:55:46 +01:00
Jannis Leidel
58575bfb84
Minor update. 2021-01-19 14:54:47 +01:00
Jannis Leidel
184df10a66
Add code owner for workflows. 2021-01-19 14:48:20 +01:00
Michael Käufl
9b9ff4c0a2 Deprecate utils.import_by_path in favor of django.utils.module_loading.import_string 2021-01-19 13:11:16 +06:00
Michael Käufl
c3d5b4b715 Add support for Python 3.9 2021-01-19 13:11:16 +06:00
Michael Käufl
add9b3ce80 Add support for Django 3.1 and 3.2 2021-01-19 13:11:16 +06:00
Michael Käufl
6cb932e47f Run pyupgrade on the code
But don't touch string formatting.

https://pypi.org/project/pyupgrade/
2021-01-19 13:11:16 +06:00
Michael Käufl
fcdbfc0bcb Drop support for Python 3.5
It has reached its EOL in September 2020, see
https://www.python.org/dev/peps/pep-0478/#release-schedule
2021-01-19 13:11:16 +06:00
Michael Käufl
dd5d6974cb Drop support for Django < 2.2 LTS, incl. Python 2.7 2021-01-19 13:11:16 +06:00
Jannis Leidel
78f9824f0c
Merge pull request #270 from jazzband/gha
Migrate to GitHub Actions
2020-11-27 17:31:02 +01:00
Jannis Leidel
f5bebd4ecc
Add fail_ci_if_error to test workflow. 2020-11-27 09:59:12 +01:00
Jannis Leidel
5053da4357
Add release workflow. 2020-11-26 17:08:22 +01:00
Jannis Leidel
eea5b9ad34
Remove travis cruft. 2020-11-26 17:08:14 +01:00
Jannis Leidel
64eefaef1a
Fix an issue with an old version of dj-email-url. 2020-11-26 16:51:15 +01:00
Jannis Leidel
b540ceadb3
Add GitHub Actions test workflow. 2020-11-26 16:18:58 +01:00
Michael K
3305de960a
Merge pull request #261 from dat2/patch-1
fix version string at runtime
2020-10-07 15:20:56 +00:00
Nicholas Dujay
4fb5928a9c
use package name in get_distribution function call 2020-09-21 09:43:42 -04:00
Arseny Sokolov
b9648bddb3
Add DictValue example 2020-06-17 23:38:48 +08:00
Baptiste Mispelon
566af30ce6 Fixed malformed links in documentation 2020-05-29 12:15:08 +02:00
Victor Seva
ac6d31bb83 testing: remove django-discover-runner
project supports Django 1.11+

> https://pypi.org/project/django-discover-runner/

This runner has been added to Django 1.6 as the default test runner.
If you use Django 1.6 or above you don’t need this app.

fix #250
2020-03-24 10:55:04 +01:00
Tim Gates
3b3f5db60d
docs: Fix simple typo, wheter -> whether
There is a small typo in docs/values.rst.

Should read `whether` rather than `wheter`.
2020-03-12 06:40:15 +11:00
Jannis Leidel
601d52218a
Merge pull request #234 from ckrybus/update-django-trove-classifiers
Update django trove classifiers
2020-01-06 19:45:18 +01:00
Christoph Krybus
6314038a77 Update django trove classifiers 2020-01-06 17:10:39 +01:00
Jannis Leidel
8d7036d253
Merge pull request #248 from jazzband/tox-travis
Move to tox-travis. Fix #246.
2019-12-03 13:25:36 +01:00
Jannis Leidel
42641f5eb4
Switch to setuptools-scm. 2019-12-03 13:09:15 +01:00
Jannis Leidel
bd61710591
Add check-manifest. 2019-12-03 12:47:25 +01:00
Jannis Leidel
b9f6aa98ec
No Bandit. 2019-12-03 12:42:36 +01:00
Jannis Leidel
c15996a0fa
Use twine check instead of readme_renderer. 2019-12-03 12:08:49 +01:00
Jannis Leidel
8e32e5b3c7
Add COVERAGE_PROCESS_START env var again. 2019-12-03 12:05:47 +01:00
Jannis Leidel
3de33277a7
Update changelog. 2019-12-03 12:00:41 +01:00