We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94d051b commit 7c378cdCopy full SHA for 7c378cd
.travis.yml
@@ -8,7 +8,6 @@ python:
8
- 2.7
9
- 3.3
10
- 3.4
11
- - 3.5
12
install:
13
- pip install -r requirements.txt
14
- pip install -r test_requirements.txt
polls/views.py
@@ -6,12 +6,7 @@
6
from polls.models import Question, Choice
7
import pyexcel.ext.xls
import pyexcel.ext.xlsx
-import sys
-PY2 = sys.version_info[0] == 2
-if PY2:
- import pyexcel.ext.ods
-else:
- import pyexcel.ext.ods3
+import pyexcel.ext.ods3
15
16
17
data = [
0 commit comments