mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
Support Django 1.9 release
This commit is contained in:
12
.travis.yml
12
.travis.yml
@@ -20,11 +20,13 @@ matrix:
|
||||
- { env: DJANGO=django==1.8, python: 2.7 }
|
||||
- { env: DJANGO=django==1.8, python: 3.4 }
|
||||
- { env: DJANGO=django==1.8, python: pypy }
|
||||
# Django 1.9 (prerelease): "Python 2.7, 3.4, or 3.5"
|
||||
- { env: DJANGO="--pre django", python: 2.7 }
|
||||
- { env: DJANGO="--pre django", python: 3.4 }
|
||||
- { env: DJANGO="--pre django", python: 3.5 }
|
||||
- { env: DJANGO="--pre django", python: pypy }
|
||||
# Django 1.9: "Python 2.7, 3.4, or 3.5"
|
||||
- { env: DJANGO=django==1.9, python: 2.7 }
|
||||
- { env: DJANGO=django==1.9, python: 3.4 }
|
||||
- { env: DJANGO=django==1.9, python: 3.5 }
|
||||
- { env: DJANGO=django==1.9, python: pypy }
|
||||
# Django 1.10 (prerelease)
|
||||
#- { env: DJANGO="--pre django", python: 3.5 }
|
||||
cache:
|
||||
directories:
|
||||
- $HOME/.cache/pip
|
||||
|
||||
@@ -29,7 +29,7 @@ package. It includes:
|
||||
* Optional support for Mandrill inbound email and other webhook notifications,
|
||||
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+).
|
||||
Djrill uses `semantic versioning <http://semver.org/>`_.
|
||||
|
||||
|
||||
@@ -91,6 +91,8 @@ Refactored Djrill backend and exceptions
|
||||
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
|
||||
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,
|
||||
|
||||
1
setup.py
1
setup.py
@@ -41,6 +41,7 @@ setup(
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.3",
|
||||
"Programming Language :: Python :: 3.4",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"License :: OSI Approved :: BSD License",
|
||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||
"Framework :: Django",
|
||||
|
||||
Reference in New Issue
Block a user