Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…-export into mikhailmain-master
  • Loading branch information
bmihelac committed Dec 2, 2015
2 parents 33487df + c649eb1 commit 67234b4
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 28 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ python:
- "3.3"
- "3.4"
env:
- DJANGO=1.4.10
- DJANGO=1.5.5
- DJANGO=1.6.1
- DJANGO=1.7.0
Expand All @@ -14,4 +13,4 @@ install:
- pip install -e git+https://github.com/kennethreitz/tablib.git#egg=tablib
- pip install -r requirements/base.txt --use-mirrors
script:
- if [[ ($TRAVIS_PYTHON_VERSION != '3.3' && $TRAVIS_PYTHON_VERSION != '3.4') || $DJANGO != "1.4.10" ]]; then python tests/manage.py test core --settings=settings; fi
- python tests/manage.py test core --settings=settings
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Requirements
-----------

* Python 2.7+ or Python 3.3+
* Django 1.4.2+
* Django 1.5.3+
* tablib (dev or 0.9.11)

Example app
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Changelog for django-import-export
0.3.2 (unreleased)
------------------

- Nothing changed yet.
- Django 1.4 is not supported (#348)


0.3.1 (2015-11-20)
Expand Down
1 change: 0 additions & 1 deletion import_export/templates/admin/import_export/base.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{% extends "admin/base_site.html" %}
{% load i18n admin_static admin_modify %}
{% load admin_urls %}
{% load url from future %}

{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static "admin/css/forms.css" %}" />{% endblock %}
{% block bodyclass %}{{ opts.app_label }}-{{ opts.object_name.lower }} change-form{% endblock %}
Expand Down
1 change: 0 additions & 1 deletion import_export/templates/admin/import_export/export.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{% extends "admin/import_export/base.html" %}
{% load url from future %}
{% load i18n %}
{% load admin_urls %}
{% load import_export_tags %}
Expand Down
1 change: 0 additions & 1 deletion import_export/templates/admin/import_export/import.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{% extends "admin/import_export/base.html" %}
{% load url from future %}
{% load i18n %}
{% load admin_urls %}
{% load import_export_tags %}
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Django>=1.4
Django>=1.5
tablib
diff-match-patch
21 changes: 1 addition & 20 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,28 +1,9 @@
[tox]
envlist = py27-1.4, py27-tablib-dev-1.4, py27-mysql-innodb-1.4, py27-1.5, py27-1.6, py33-1.6, py27-1.7, py33-1.7, py34-1.7, py27-1.8, py33-1.8, py34-1.8
envlist = py27-1.5, py27-1.6, py33-1.6, py27-1.7, py33-1.7, py34-1.7, py27-1.8, py33-1.8, py34-1.8

[testenv]
commands=python {toxinidir}/tests/manage.py test core

[testenv:py27-1.4]
basepython = python2.7
deps =
django==1.4.10

[testenv:py27-tablib-dev-1.4]
basepython = python2.7
deps =
django==1.4.10
-egit+https://github.com/kennethreitz/tablib.git#egg=tablib

[testenv:py27-mysql-innodb-1.4]
basepython = python2.7
deps =
django==1.4.10
mysql-python
setenv =
IMPORT_EXPORT_TEST_TYPE=mysql-innodb

[testenv:py27-1.5]
basepython = python2.7
deps =
Expand Down

0 comments on commit 67234b4

Please sign in to comment.