-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/3.3: Add @vstoykov to the author list. Bump version number. Update django-nose version to work with Django 1.9 Add a missing env to the tox matrix Work a compatibility implementation for Django 1.2 Tells tox to only run the designated env Enable the new travis architecture for speed and reliability Allow the test to fail fast Allow travis to fail for the python3.5 interpreter not yet available Use the env conf for travis to split the test builds Add tox env for django 1.9 Update the doc to reflect the new `IMAGEKIT_CACHE_BACKEND` behavior Cleaner implementation thanks to @vstoykov explanation Handle cases where DEFAULT_CACHE_ALIAS is None in old Django versions Do not take a decision on which cache to use in DEBUG mode Use a compat method to wrap the new way of retrieving the cache engine
- Loading branch information
Showing
8 changed files
with
105 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,46 @@ | ||
language: python | ||
python: | ||
- 2.7 | ||
install: pip install tox --use-mirrors | ||
script: tox | ||
python: "2.7" | ||
sudo: false | ||
|
||
env: | ||
- TOX_ENV=py26-django12 | ||
- TOX_ENV=py26-django13 | ||
- TOX_ENV=py26-django14 | ||
- TOX_ENV=py26-django15 | ||
- TOX_ENV=py26-django16 | ||
- TOX_ENV=py27-django12 | ||
- TOX_ENV=py27-django13 | ||
- TOX_ENV=py27-django14 | ||
- TOX_ENV=py27-django15 | ||
- TOX_ENV=py27-django16 | ||
- TOX_ENV=py27-django17 | ||
- TOX_ENV=py27-django18 | ||
- TOX_ENV=py27-django19 | ||
- TOX_ENV=py32-django15 | ||
- TOX_ENV=py32-django16 | ||
- TOX_ENV=py32-django17 | ||
- TOX_ENV=py32-django18 | ||
- TOX_ENV=py33-django15 | ||
- TOX_ENV=py33-django16 | ||
- TOX_ENV=py33-django17 | ||
- TOX_ENV=py33-django18 | ||
- TOX_ENV=py34-django16 | ||
- TOX_ENV=py34-django17 | ||
- TOX_ENV=py34-django18 | ||
- TOX_ENV=py34-django19 | ||
- TOX_ENV=py35-django19 | ||
|
||
matrix: | ||
# Python 3.5 not yet available on travis, watch this to see when it is. | ||
fast_finish: true | ||
allow_failures: | ||
- env: TOX_ENV=py35-django19 | ||
|
||
install: | ||
- pip install tox --use-mirrors | ||
|
||
script: | ||
- tox -e $TOX_ENV | ||
|
||
notifications: | ||
irc: "irc.freenode.org#imagekit" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
__title__ = 'django-imagekit' | ||
__author__ = 'Matthew Tretter, Eric Eldredge, Bryan Veloso, Greg Newman, Chris Drackett, Justin Driscoll' | ||
__version__ = '3.2.7' | ||
__author__ = 'Matthew Tretter, Venelin Stoykov, Eric Eldredge, Bryan Veloso, Greg Newman, Chris Drackett, Justin Driscoll' | ||
__version__ = '3.3' | ||
__license__ = 'BSD' | ||
__all__ = ['__title__', '__author__', '__version__', '__license__'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters