1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

Refactoring imports for Python3 support. Fixes #13.

* Refactoring unicode payload handling of mis-encoded payloads.
* Uses six.moves.urllib to find proper urllib versions.
This commit is contained in:
Adam Coddington 2014-04-24 15:28:54 -07:00
parent ff68e564d5
commit 002e33bd95
4 changed files with 28 additions and 17 deletions

View file

@ -3,9 +3,10 @@ python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
env:
- DJANGO=1.5.5
- DJANGO=1.6.1
- DJANGO=1.5.6
- DJANGO=1.6.3
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install -q -e . --use-mirrors