File tree 3 files changed +10
-3
lines changed
3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -318,6 +318,13 @@ django-nose does not support Django 1.0.
318
318
319
319
Recent Version History
320
320
----------------------
321
+ 1.4.1 (2015-06-29)
322
+ * Fix version number (ezarowny)
323
+ * Fix choice options, unbreaking nose-cover (aamirtharaj-rpx, jwhitlock)
324
+ * Support 1.8 app loading system (dgladkov)
325
+ * Support non-ASCII file names (singingwolfboy)
326
+ * Better PEP8'd assertion names (roganov)
327
+
321
328
1.4 (2015-04-23)
322
329
* Django 1.8 support (timc3, adepue, jwhitlock)
323
330
* Support --testrunner option (st3lk)
Original file line number Diff line number Diff line change 1
1
# coding: utf-8
2
2
from __future__ import unicode_literals
3
3
4
- VERSION = (1 , 4 , 0 )
4
+ VERSION = (1 , 4 , 1 )
5
5
__version__ = '.' .join (map (str , VERSION ))
6
6
7
7
from django_nose .runner import *
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = 'django-nose' ,
9
- version = '1.4' ,
9
+ version = '1.4.1 ' ,
10
10
description = 'Makes your Django tests simple and snappy' ,
11
11
long_description = open (os .path .join (ROOT , 'README.rst' )).read (),
12
12
author = 'Jeff Balogh' ,
26
26
# we need FixtureBundlingPlugin declared as an entrypoint anyway, since you
27
27
# need to be using django-nose to find the it useful, and django-nose knows
28
28
# about it intrinsically.
29
- #entry_points="""
29
+ # entry_points="""
30
30
# [nose.plugins.0.10]
31
31
# fixture_bundler = django_nose.fixture_bundling:FixtureBundlingPlugin
32
32
# """,
You can’t perform that action at this time.
0 commit comments