Commit 00600e7ab7bb7767a5237cdb79578e2bafcee490

Authored by Tim Graham
Committed by Claude Paroz
1 parent 1ab69cb1

Dropped testing for Django 1.7 and Python 3.2 (#109)

1 language: python 1 language: python
2 python: 2 python:
3 - "2.7" 3 - "2.7"
4 - - "3.2"  
5 - "3.3" 4 - "3.3"
6 - "3.4" 5 - "3.4"
7 env: 6 env:
8 - - DJANGO="Django>=1.7,<1.8"  
9 - DJANGO="Django>=1.8,<1.9" 7 - DJANGO="Django>=1.8,<1.9"
10 - DJANGO="Django>=1.9,<1.10" 8 - DJANGO="Django>=1.9,<1.10"
11 - DJANGO="Django>=1.10,<1.11" 9 - DJANGO="Django>=1.10,<1.11"
@@ -13,16 +11,10 @@ env: @@ -13,16 +11,10 @@ env:
13 11
14 matrix: 12 matrix:
15 exclude: 13 exclude:
16 - - python: "3.2"  
17 - env: DJANGO="Django>=1.9,<1.10"  
18 - python: "3.3" 14 - python: "3.3"
19 env: DJANGO="Django>=1.9,<1.10" 15 env: DJANGO="Django>=1.9,<1.10"
20 - - python: "3.2"  
21 - env: DJANGO="Django>=1.10,<1.11"  
22 - python: "3.3" 16 - python: "3.3"
23 env: DJANGO="Django>=1.10,<1.11" 17 env: DJANGO="Django>=1.10,<1.11"
24 - - python: "3.2"  
25 - env: DJANGO=https://github.com/django/django/archive/master.tar.gz  
26 - python: "3.3" 18 - python: "3.3"
27 env: DJANGO=https://github.com/django/django/archive/master.tar.gz 19 env: DJANGO=https://github.com/django/django/archive/master.tar.gz
28 allow_failures: 20 allow_failures:
@@ -9,6 +9,7 @@ Pending @@ -9,6 +9,7 @@ Pending
9 * Fixed a packaging error which caused sub-packages of the tests to be 9 * Fixed a packaging error which caused sub-packages of the tests to be
10 distributed. 10 distributed.
11 * Use ``get_current_site`` to look up the site instead of ``settings.SITE_ID``. 11 * Use ``get_current_site`` to look up the site instead of ``settings.SITE_ID``.
  12 +* Dropped Django 1.7 and Python 3.2 support.
12 13
13 1.7.3 (2016-09-13) 14 1.7.3 (2016-09-13)
14 ------------------ 15 ------------------
@@ -23,7 +23,6 @@ setup( @@ -23,7 +23,6 @@ setup(
23 'Development Status :: 5 - Production/Stable', 23 'Development Status :: 5 - Production/Stable',
24 'Environment :: Web Environment', 24 'Environment :: Web Environment',
25 'Framework :: Django', 25 'Framework :: Django',
26 - 'Framework :: Django :: 1.7',  
27 'Framework :: Django :: 1.8', 26 'Framework :: Django :: 1.8',
28 'Framework :: Django :: 1.9', 27 'Framework :: Django :: 1.9',
29 'Framework :: Django :: 1.10', 28 'Framework :: Django :: 1.10',
@@ -34,7 +33,6 @@ setup( @@ -34,7 +33,6 @@ setup(
34 'Programming Language :: Python', 33 'Programming Language :: Python',
35 'Programming Language :: Python :: 2.7', 34 'Programming Language :: Python :: 2.7',
36 'Programming Language :: Python :: 3', 35 'Programming Language :: Python :: 3',
37 - 'Programming Language :: Python :: 3.2',  
38 'Programming Language :: Python :: 3.3', 36 'Programming Language :: Python :: 3.3',
39 'Programming Language :: Python :: 3.4', 37 'Programming Language :: Python :: 3.4',
40 ], 38 ],
1 [tox] 1 [tox]
2 -envlist = py27-django17, py32-django17, py33-django17,  
3 - py27-django18, py32-django18, py33-django18,  
4 - py27-django19, py34-django19,  
5 - py27-django110, py34-django110,  
6 - py27-master, py34-master 2 +envlist =
  3 + py27-django18, py33-django18,
  4 + py27-django19, py34-django19,
  5 + py27-django110, py34-django110,
  6 + py27-master, py34-master
7 7
8 [testenv] 8 [testenv]
9 commands = {envpython} setup.py test 9 commands = {envpython} setup.py test
10 setenv= 10 setenv=
11 PYTHONWARNINGS=default 11 PYTHONWARNINGS=default
12 12
13 -[testenv:py27-django17]  
14 -basepython = python2.7  
15 -deps = Django>=1.7,<1.8  
16 -  
17 -[testenv:py32-django17]  
18 -basepython = python3.2  
19 -deps = Django>=1.7,<1.8  
20 -  
21 -[testenv:py33-django17]  
22 -basepython = python3.3  
23 -deps = Django>=1.7,<1.8  
24 -  
25 [testenv:py27-django18] 13 [testenv:py27-django18]
26 basepython = python2.7 14 basepython = python2.7
27 deps = Django>=1.8,<1.9 15 deps = Django>=1.8,<1.9
28 16
29 -[testenv:py32-django18]  
30 -basepython = python3.2  
31 -deps = Django>=1.8,<1.9  
32 -  
33 [testenv:py33-django18] 17 [testenv:py33-django18]
34 basepython = python3.3 18 basepython = python3.3
35 deps = Django>=1.8,<1.9 19 deps = Django>=1.8,<1.9
Please register or login to post a comment