-
While django2 is widely supported by Debian based distributions, it might be useful to support also django3, or port it to version 3 only.
It includes some new features:
- https://adamj.eu/tech/…
-
I had fix an error of your code.
In Django3, you shoud not using "from django.utils.six import python_2_unicode_compatible", you should update it to "import six".
https://stackoverflow.com/quest…
-
I am pretty new to Django and I am therefore following this official tutorial [here](https://docs.djangoproject.com/en/3.2/intro/tutorial02/). But instead of using Sqlite I'd like to use an MSSQL back…
-
This version of `django-jet` works with `Django3.0`: https://github.com/Barukimang/django-jet/
To install use: `pip install django-3-jet`
See also here: https://pypi.org/project/django-3-jet/
…
-
can i use in django3.0+ ?
-
Need a list of changed files and steps that can be exposed to config builder.
Tests:
```
# test.py in template-builder root
import os
import dodo
# 'cleanup', 'init', 'update', 'platformi…
-
#### One line description of the issue
EmbeddedField doesn't work on Django3
#### Python script
python manage.py runserver
```python
from user.models import User
from platform_backend.li…
-
Hello,
this code snippet fails on tenant execution
@sync_to_async
def get_objects(objects):
objects = MyModel.objects.all()
django.db.utils.ProgrammingError: relation "my_app_mymodel" …
-
I tried to patch `pymongo` in mi project that is in Python 3.5 but when i run it the following error appear:
```python
Unhandled exception in thread started by
Traceback (most recent call last):…
-
Django3 does not support asynchronous ORM, how can I use tortoise-orm in django3, I can't find an example of that.
Thanks!