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 da6fa26 commit 1b2fe21Copy full SHA for 1b2fe21
.travis.yml
@@ -1,11 +1,10 @@
1
language: python
2
python:
3
- "2.7"
4
- # - "3.2"
5
- # - "3.3"
+ - "3.2"
6
7
# command to install dependencies
8
-install: "pip install -r requirements.txt --use-mirrors"
+install: pip install -r requirements_python`python version.py`.txt --use-mirrors
9
10
# command to run tests
11
script: nosetests && sphinx-build -nW -b html -d docs/_build/doctrees docs docs/_build/html
version.py
@@ -0,0 +1,3 @@
+import sys
+
+print(sys.version_info.major)
0 commit comments