Skip to content

Commit

Permalink
Version 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jsocol committed Dec 5, 2014
1 parent 1c85e09 commit c60ae6c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.rst
Expand Up @@ -286,8 +286,6 @@ set your `ROOT_URLCONF='my_project.urls'` to match the new structure, when runni
django-nose's test runner it will try to find your urls.py file in `'my_project.my_project.urls'`.




Upgrading from Django < 1.2
~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down Expand Up @@ -321,6 +319,10 @@ django-nose does not support Django 1.0.
Recent Version History
----------------------

1.3 (2014-12-05)
* Django 1.6 and 1.7 support (conrado, co3k, Nepherhotep, mbertheau)
* Python 3.3 and 3.4 testing and support (frewsxcv, jsocol)

1.2 (2013-07-23)
* Python 3 support (melinath and jonashaag)
* Django 1.5 compat (fabiosantoscode)
Expand Down
2 changes: 1 addition & 1 deletion django_nose/__init__.py
@@ -1,4 +1,4 @@
VERSION = (1, 1, 0)
VERSION = (1, 3, 0)
__version__ = '.'.join(map(str, VERSION))

from django_nose.runner import *
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Expand Up @@ -6,7 +6,7 @@

setup(
name='django-nose',
version='1.7',
version='1.3',
description='Makes your Django tests simple and snappy',
long_description=open(os.path.join(ROOT, 'README.rst')).read(),
author='Jeff Balogh',
Expand All @@ -18,7 +18,7 @@
packages=find_packages(exclude=['testapp', 'testapp/*']),
include_package_data=True,
zip_safe=False,
install_requires=['nose>=1.2.1', 'Django>=1.2'],
install_requires=['nose>=1.2.1', 'Django>=1.4'],
tests_require=['south>=0.7'],
# This blows up tox runs that install django-nose into a virtualenv,
# because it causes Nose to import django_nose.runner before the Django
Expand All @@ -41,7 +41,9 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Testing'
]
)

0 comments on commit c60ae6c

Please sign in to comment.