Support Django 1.9 release

This commit is contained in:
medmunds
2015-12-02 16:59:34 -08:00
parent 02641b0959
commit 265c7460e0
4 changed files with 11 additions and 6 deletions

View File

@@ -20,11 +20,13 @@ matrix:
- { env: DJANGO=django==1.8, python: 2.7 } - { env: DJANGO=django==1.8, python: 2.7 }
- { env: DJANGO=django==1.8, python: 3.4 } - { env: DJANGO=django==1.8, python: 3.4 }
- { env: DJANGO=django==1.8, python: pypy } - { env: DJANGO=django==1.8, python: pypy }
# Django 1.9 (prerelease): "Python 2.7, 3.4, or 3.5" # Django 1.9: "Python 2.7, 3.4, or 3.5"
- { env: DJANGO="--pre django", python: 2.7 } - { env: DJANGO=django==1.9, python: 2.7 }
- { env: DJANGO="--pre django", python: 3.4 } - { env: DJANGO=django==1.9, python: 3.4 }
- { env: DJANGO="--pre django", python: 3.5 } - { env: DJANGO=django==1.9, python: 3.5 }
- { env: DJANGO="--pre django", python: pypy } - { env: DJANGO=django==1.9, python: pypy }
# Django 1.10 (prerelease)
#- { env: DJANGO="--pre django", python: 3.5 }
cache: cache:
directories: directories:
- $HOME/.cache/pip - $HOME/.cache/pip

View File

@@ -29,7 +29,7 @@ package. It includes:
* Optional support for Mandrill inbound email and other webhook notifications, * Optional support for Mandrill inbound email and other webhook notifications,
via Django signals via Django signals
Djrill is released under the BSD license. It is tested against Django 1.4--1.8 Djrill is released under the BSD license. It is tested against Django 1.4--1.9
(including Python 3 with Django 1.6+, and PyPy support with Django 1.5+). (including Python 3 with Django 1.6+, and PyPy support with Django 1.5+).
Djrill uses `semantic versioning <http://semver.org/>`_. Djrill uses `semantic versioning <http://semver.org/>`_.

View File

@@ -91,6 +91,8 @@ Refactored Djrill backend and exceptions
Other Djrill 2.0 Changes Other Djrill 2.0 Changes
~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
* Add Django 1.9 support; drop Django 1.3, Python 2.6, and Python 3.2
* Use a single HTTP connection to the Mandrill API to improve performance * Use a single HTTP connection to the Mandrill API to improve performance
when sending multiple messages at once using :func:`~django.core.mail.send_mass_mail`. when sending multiple messages at once using :func:`~django.core.mail.send_mass_mail`.
(You can also directly manage your own long-lived Djrill connection across multiple sends, (You can also directly manage your own long-lived Djrill connection across multiple sends,

View File

@@ -41,6 +41,7 @@ setup(
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: BSD License", "License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django", "Framework :: Django",