Skip to content

Commit 80d5f20

Browse files
committed
Merge pull request #1 from goinnn/master
Fix "ImportError: No module named 'future'"
2 parents 44be5f6 + 31c991c commit 80d5f20

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22

33
from distutils.core import setup
4-
from xlwt import __VERSION__
4+
__VERSION__ = '0.8-pre'
55

66
DESCRIPTION = (
77
'Library to create spreadsheet files compatible with '
@@ -59,4 +59,5 @@
5959
'tests/*.*',
6060
],
6161
},
62+
install_requires=['future>=0.6.0']
6263
)

xlwt/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from __future__ import absolute_import
2-
__VERSION__ = '0.8-pre'
32

43
from .Workbook import Workbook
54
from .Worksheet import Worksheet

0 commit comments

Comments
 (0)