Skip to content

Commit

Permalink
Drop support for Django 1.1, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bradleyayers committed Sep 21, 2012
1 parent baf547b commit a945c91
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 25 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
django-attest
=============

Django testing for Attest. Requires Django >=1.1.
Django testing for Attest. Requires Django >=1.2.


Installation
Expand Down Expand Up @@ -147,7 +147,7 @@ setup.py
from setuptools import setup
setup(
...
tests_require=['Django >=1.1', 'Attest >=0.4', 'django-attest'],
tests_require=['Django >=1.2', 'Attest >=0.4', 'django-attest'],
test_loader='tests:loader',
test_suite='tests.suite',
)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='django-attest',
version='0.7.0',
version='0.7.1',
description='Provides Django specific testing helpers to Attest',

author='Bradley Ayers',
Expand All @@ -13,7 +13,7 @@
url='https://github.com/bradleyayers/django-attest/',

packages=['django_attest'],
install_requires=['Django >=1.1', 'Attest >=0.5', 'distribute'],
install_requires=['Django >=1.2', 'Attest >=0.5', 'distribute'],

test_loader='tests:loader',
test_suite='tests.suite',
Expand Down
21 changes: 0 additions & 21 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ testing =
latest = https://github.com/dag/attest/tarball/master

[django]
1.1.x = Django>=1.1,<1.2
1.2.x = Django>=1.2,<1.3
1.3.x = Django>=1.3,<1.4
1.4.x = Django>=1.4,<1.5
Expand Down Expand Up @@ -56,14 +55,6 @@ deps =
{[django]1.2.x}


[testenv:py27_at_dj11]
basepython = python2.7
deps =
{[tools]testing}
{[attest]latest}
{[django]1.1.x}


; -- python 2.7, Attest 0.5.x, Django -----------------------------------------
; `commands` is changed here to *not* turn warnings into errors. Attest 0.5.x
; triggers a warning in Python's contextlib.
Expand Down Expand Up @@ -115,15 +106,3 @@ deps =
{[tools]testing}
{[attest]0.5.x}
{[django]1.2.x}


[testenv:py27_at05_dj11]
basepython = python2.7
commands =
python {envbindir}/coverage run setup.py test []
mkdir -p reports
coverage xml '--include=django_attest/*' -o reports/coverage.xml
deps =
{[tools]testing}
{[attest]0.5.x}
{[django]1.1.x}

0 comments on commit a945c91

Please sign in to comment.