Skip to content

Commit b43000d

Browse files
committed
try to test different versions of pyramid
1 parent 89c6058 commit b43000d

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

.moban.d/travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
{% extends "travis.yml.jj2" %}
2+
{%block test_other_environments%}
3+
- PYRAMID_VERSION=1.4.9
4+
- PYRAMID_VERSION=1.5.7
5+
- PYRAMID_VERSION=1.6.1
6+
{%endblock%}
7+
28
{%block test_other_python_versions%} - 3.3
39
- 3.4
410
- 3.5
511
{%endblock%}
612

7-
{% block custom_install %} - pip install https://github.com/pyexcel/pyexcel-webio/archive/master.zip
13+
{% block custom_install %} - pip install pyramid==PYRAMID_VERSION
814
{% endblock%}

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ language: python
33
notifications:
44
email: false
55
env:
6-
global:
6+
- PYRAMID_VERSION=1.4.9
7+
- PYRAMID_VERSION=1.5.7
8+
- PYRAMID_VERSION=1.6.1
79
python:
810
- 2.7
911
- 3.3
1012
- 3.4
1113
- 3.5
1214
install:
13-
- pip install https://github.com/pyexcel/pyexcel-webio/archive/master.zip
15+
- pip install pyramid==PYRAMID_VERSION
1416
- pip install -r requirements.txt
1517
- pip install -r tests/requirements.txt
1618
script:

pyramid_excel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ webframework: Pyramid
55
dependencies:
66
- pyexcel>=0.2.0
77
- pyexcel-webio>=0.0.6
8-
- Pyramid>=1.5.7
8+
- Pyramid>=1.4.9
99
extra_dependencies:
1010
- xls:
1111
- pyexcel-xls>=0.1.0

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
pyexcel>=0.2.0
22
pyexcel-webio>=0.0.6
3-
Pyramid>=1.5.7
3+
Pyramid>=1.4.9

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
dependencies = [
1212
'pyexcel>=0.2.0',
1313
'pyexcel-webio>=0.0.6',
14-
'Pyramid>=1.5.7',
14+
'Pyramid>=1.4.9',
1515
]
1616

1717
extras = {

0 commit comments

Comments
 (0)