Commit graph

19 commits

Author SHA1 Message Date
pre-commit-ci[bot]
91d9a8bbd7 [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
2024-04-17 12:18:12 +02:00
Petr Dlouhý
bd3e807ac6 fixes for Django 4.0 2022-02-24 14:56:17 +01:00
Corey Oordt
076debb44d Adds doc strings for lots of functions. 2021-12-22 12:03:21 -06:00
pre-commit-ci[bot]
5961d6b80f [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
2021-12-05 14:34:46 +00:00
gantonayde
833789891b
Add support for Django 3.1
In Django 3.1 the compatibility import of django.core.exceptions.FieldDoesNotExist in django.db.models.fields is removed.

So we'd have to update the package by replacing:
from django.db.models.fields import FieldDoesNotExist
with
from django.core.exceptions import FieldDoesNotExist
2020-08-11 23:16:58 +01:00
Brent O'Connor
f6cd053f74 Changed from using a string to importing the actual CASCADE function 2018-02-27 11:18:07 -06:00
goetzb
a8dc71bcb1 Proposes changes based on 366ff74619 and pull request #140 for Django 2.0 to pass CI tests. 2018-02-27 11:09:26 -06:00
Brent O'Connor
366ff74619 Made updates to get everything working with Django 2 2017-12-26 11:27:42 -06:00
Brent O'Connor
c4f7978eef PEP8 fixes 2016-11-14 12:29:05 -06:00
Brent O'Connor
64686cdaa8 Made a bunch of flake8 fixes and also added flake8 testing to Travis and Tox 2016-02-15 15:47:21 -06:00
Brent O'Connor
337cca5813 Switched from using django.db.models.loading.get_model to using django.apps.apps.get_model 2016-02-10 16:28:40 -06:00
Brent O'Connor
c5c459fe42 Ran the 2to3 script 2to3 -w . 2016-02-10 11:47:30 -06:00
Corey Oordt
02780ba2a1 Version 1.3b7 - fixes registration when there is no app config 2015-06-09 15:23:43 -05:00
Corey Oordt
8dda6ec87b Fixed a potential issue with double-loading of the dev server 2015-06-09 15:23:43 -05:00
Corey Oordt
acff7f02a3 Dramatically refactored how migrations are performed to work with Django 1.7 2015-06-09 15:21:38 -05:00
Corey Oordt
b75f11213c Version 1.2.3: Added a new way to register models manually 2015-05-05 18:05:37 -05:00
winniehell
89c7333306 i18n 2013-03-20 06:54:34 -05:00
Corey Oordt
8be19c893a Placing some south imports into try blocks. 2012-08-18 13:04:58 -04:00
Corey Oordt
d63828ebf6 Refactored the registration of fields from __init__ to a new module.
It also makes it easier to test.
2012-08-18 12:53:37 -04:00