-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/4.0: Bump version to 4.0 Universal wheels! Replaces #301 autodiscover works with AppConfig Ignore autogenerated CTags file Do not try south modelinspector when not needed Make it possible to configure IMAGEKIT_CACHE_TIMEOUT Test against Django 1.11 Close the file only if it has been opened locally Cleanup caching configuration updated readme.rst with a svg badge honor post_save's update_fields and only fire the source_saved signal when needed Ignore VSCode workspace config files Fixed #350: Error when trying to access width/height after url Fixes #382: Tests no longer leave junk Fixes #379 Support for Django 1.10 Ignore .idea from git Include the test suite in the sourcetarball but do not install it. Make travis happy Drop support for older Django and Python versions Replace Lenna image in tests with a truly free alternative. Move compat module outside of templatetags package Fix test requirements for django 1.9 and Python3.5
- Loading branch information
Showing
31 changed files
with
313 additions
and
185 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
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,46 +1,62 @@ | ||
|
||
language: python | ||
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 | ||
install: | ||
- pip install tox | ||
|
||
script: | ||
- tox | ||
|
||
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 | ||
include: | ||
- env: TOXENV=py27-django14 | ||
python: 2.7 | ||
- env: TOXENV=py27-django15 | ||
python: 2.7 | ||
- env: TOXENV=py27-django16 | ||
python: 2.7 | ||
- env: TOXENV=py27-django17 | ||
python: 2.7 | ||
- env: TOXENV=py27-django18 | ||
python: 2.7 | ||
- env: TOXENV=py27-django19 | ||
python: 2.7 | ||
- env: TOXENV=py27-django110 | ||
python: 2.7 | ||
- env: TOXENV=py27-django111 | ||
python: 2.7 | ||
- env: TOXENV=py33-django15 | ||
python: 3.3 | ||
- env: TOXENV=py33-django16 | ||
python: 3.3 | ||
- env: TOXENV=py33-django17 | ||
python: 3.3 | ||
- env: TOXENV=py33-django18 | ||
python: 3.3 | ||
- env: TOXENV=py34-django16 | ||
python: 3.4 | ||
- env: TOXENV=py34-django17 | ||
python: 3.4 | ||
- env: TOXENV=py34-django18 | ||
python: 3.4 | ||
- env: TOXENV=py34-django19 | ||
python: 3.4 | ||
- env: TOXENV=py34-django110 | ||
python: 3.4 | ||
- env: TOXENV=py34-django111 | ||
python: 3.4 | ||
- env: TOXENV=py35-django18 | ||
python: 3.5 | ||
- env: TOXENV=py35-django19 | ||
python: 3.5 | ||
- env: TOXENV=py35-django110 | ||
python: 3.5 | ||
- env: TOXENV=py35-django111 | ||
python: 3.5 | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
include AUTHORS | ||
include LICENSE | ||
include README.rst | ||
recursive-include docs * | ||
recursive-include imagekit/templates * | ||
prune tests | ||
include testrunner.py | ||
include setup.cfg | ||
include tests/*.py | ||
include tests/assets/Lenna.png | ||
include tests/assets/lenna-*.jpg | ||
include tests/media/lenna.png | ||
prune tests/media/CACHE | ||
prune tests/media/b | ||
prune tests/media/photos | ||
include docs/Makefile | ||
include docs/conf.py | ||
include docs/make.bat | ||
include docs/*.rst | ||
recursive-include docs/_themes LICENSE README.rst flask_theme_support.py theme.conf *.css_t *.css *.html | ||
recursive-include imagekit/templates *.html |
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
File renamed without changes.
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
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, Venelin Stoykov, Eric Eldredge, Bryan Veloso, Greg Newman, Chris Drackett, Justin Driscoll' | ||
__version__ = '3.3' | ||
__version__ = '4.0' | ||
__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
Oops, something went wrong.