Skip to content

Commit af20c82

Browse files
author
Ross Mechanic
authored
Patch for ModuleNotFound issue with six (#553)
* Fix six issue * Bump version: 2.7.1 → 2.7.2 * Patch for ModuleNotFound issue for six * Made version >= 1.3.0 * Don't pin six version
1 parent 3df2061 commit af20c82

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changes
22
=======
33

4+
2.7.2 (2019-04-17)
5+
------------------
6+
- Fixed ModuleNotFound issue for `six` (gh-553)
7+
48
2.7.1 (2019-04-16)
59
------------------
610
- Added the possibility to create a relation to the original model (gh-536)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.7.1
2+
current_version = 2.7.2
33
commit = True
44
tag = True
55
tag_name = {new_version}

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
import simple_history
33

44
tests_require = [
5-
'Django>=1.11', 'WebTest==2.0.24', 'django-webtest==1.8.0', 'mock==1.0.1']
5+
'Django>=1.11', 'WebTest==2.0.24', 'django-webtest==1.8.0', 'mock==1.0.1',
6+
'six']
67

78
setup(
89
name='django-simple-history',
@@ -39,6 +40,7 @@
3940
],
4041
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
4142
tests_require=tests_require,
43+
install_requires=["six"],
4244
include_package_data=True,
4345
test_suite='runtests.main',
4446
)

simple_history/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import unicode_literals
22

3-
__version__ = "2.7.1"
3+
__version__ = "2.7.2"
44

55

66
def register(

0 commit comments

Comments
 (0)