Skip to content

Commit

Permalink
Removes Django ORM as a broker support
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Jun 28, 2016
1 parent c03ec50 commit 65f982c
Show file tree
Hide file tree
Showing 25 changed files with 0 additions and 496 deletions.
2 changes: 0 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,6 @@ Transport Comparison
+---------------+----------+------------+------------+---------------+--------------+-----------------------+
| *in-memory* | Virtual | Yes | Yes [#f1]_ | No | No | No |
+---------------+----------+------------+------------+---------------+--------------+-----------------------+
| *django* | Virtual | Yes | Yes [#f1]_ | No | No | No |
+---------------+----------+------------+------------+---------------+--------------+-----------------------+
| *SLMQ* | Virtual | Yes | Yes [#f1]_ | No | No | No |
+---------------+----------+------------+------------+---------------+--------------+-----------------------+

Expand Down
5 changes: 0 additions & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,9 @@
html_favicon='images/favicon.ico',
html_prepend_sidebars=['sidebardonations.html'],
extra_extensions=[],
configure_django_settings={'DEBUG': False},
apicheck_ignore_modules=[
'kombu.entity',
'kombu.messaging',
'kombu.transport.django.management',
'kombu.transport.django.management.commands',
r'kombu.transport.django.migrations.*',
r'kombu.transport.django.south_migrations.*',
'kombu.async.aws.ext',
'kombu.async.aws.sqs.ext',
'kombu.transport.qpid_patches',
Expand Down
2 changes: 0 additions & 2 deletions docs/includes/introduction.txt
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ Transport Comparison
+---------------+----------+------------+------------+---------------+--------------+-----------------------+
| *in-memory* | Virtual | Yes | Yes [#f1]_ | No | No | No |
+---------------+----------+------------+------------+---------------+--------------+-----------------------+
| *django* | Virtual | Yes | Yes [#f1]_ | No | No | No |
+---------------+----------+------------+------------+---------------+--------------+-----------------------+
| *SLMQ* | Virtual | Yes | Yes [#f1]_ | No | No | No |
+---------------+----------+------------+------------+---------------+--------------+-----------------------+

Expand Down
4 changes: 0 additions & 4 deletions docs/reference/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@
kombu.transport.couchdb
kombu.transport.zookeeper
kombu.transport.filesystem
kombu.transport.django
kombu.transport.django.models
kombu.transport.django.managers
kombu.transport.django.management.commands.clean_kombu_messages
kombu.transport.SQS
kombu.transport.SLMQ
kombu.transport.pyro
Expand Down

This file was deleted.

11 changes: 0 additions & 11 deletions docs/reference/kombu.transport.django.managers.rst

This file was deleted.

11 changes: 0 additions & 11 deletions docs/reference/kombu.transport.django.models.rst

This file was deleted.

24 changes: 0 additions & 24 deletions docs/reference/kombu.transport.django.rst

This file was deleted.

2 changes: 0 additions & 2 deletions docs/userguide/connections.rst
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,6 @@ Transport Comparison
+---------------+----------+------------+------------+---------------+--------------+
| *in-memory* | Virtual | Yes | Yes [#f1]_ | No | No |
+---------------+----------+------------+------------+---------------+--------------+
| *django* | Virtual | Yes | Yes [#f1]_ | No | No |
+---------------+----------+------------+------------+---------------+--------------+
| *SLMQ* | Virtual | Yes | Yes [#f1]_ | No | No |
+---------------+----------+------------+------------+---------------+--------------+

Expand Down
2 changes: 0 additions & 2 deletions funtests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ def run(self, *args, **kwargs):
'couchdb',
'kazoo',
'beanstalkc',
'django',
'django-kombu',
],
classifiers=[
'Operating System :: OS Independent',
Expand Down
30 changes: 0 additions & 30 deletions funtests/tests/test_django.py

This file was deleted.

21 changes: 0 additions & 21 deletions kombu/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,28 +56,7 @@ def is_in_coverage():
'--with-coverage3' in sys.argv)


def setup_django_env():
try:
from django.conf import settings
except ImportError:
return

if not settings.configured:
settings.configure(
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
},
},
DATABASE_ENGINE='sqlite3',
DATABASE_NAME=':memory:',
INSTALLED_APPS=('kombu.transport.django',),
)


def setup():
# so coverage sees all our modules.
setup_django_env()
if is_in_coverage():
import_all_modules()
1 change: 0 additions & 1 deletion kombu/transport/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ def supports_librabbitmq():
'mongodb': 'kombu.transport.mongodb:Transport',
'couchdb': 'kombu.transport.couchdb:Transport',
'zookeeper': 'kombu.transport.zookeeper:Transport',
'django': 'kombu.transport.django:Transport',
'SLMQ': 'kombu.transport.SLMQ.Transport',
'slmq': 'kombu.transport.SLMQ.Transport',
'filesystem': 'kombu.transport.filesystem:Transport',
Expand Down
83 changes: 0 additions & 83 deletions kombu/transport/django/__init__.py

This file was deleted.

Empty file.
Empty file.
22 changes: 0 additions & 22 deletions kombu/transport/django/management/commands/clean_kombu_messages.py

This file was deleted.

95 changes: 0 additions & 95 deletions kombu/transport/django/managers.py

This file was deleted.

Loading

0 comments on commit 65f982c

Please sign in to comment.