Skip to content

Commit b03b27b

Browse files
Merge pull request #561 from vossen-adobe/updated_centos_fix
Centos environment and dependency build issues fix
2 parents c60ad3b + f7e7145 commit b03b27b

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.travis.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ matrix:
2323
- .travis/build-py27.sh
2424
- .travis/release.sh
2525
- python setup.py test
26-
- env: OS="centos:7" IMG="centos7" SH="docker exec -t ${IMG} bash -c"
26+
- env:
27+
- OS="centos:7"
28+
- IMG="centos7"
29+
- SH="docker exec -t ${IMG} bash -c"
2730
services:
2831
- docker
2932
# for logging purposes
@@ -37,7 +40,10 @@ matrix:
3740
- $SH .travis/install-centos.sh
3841
script:
3942
- $SH .travis/build-py36-centos.sh
40-
- env: OS="centos:7" IMG="centos7" SH="docker exec -t ${IMG} bash -c"
43+
- env:
44+
- OS="centos:7"
45+
- IMG="centos7"
46+
- SH="docker exec -t ${IMG} bash -c"
4147
services:
4248
- docker
4349
# for logging purposes

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
'click-default-group',
5959
],
6060
extras_require={
61-
':python_version>="3" and (sys_platform=="linux" or sys_platform=="linux2")':[
62-
'jeepney==0.4'
61+
':python_version<"3" and (sys_platform=="linux" or sys_platform=="linux2")':[
62+
'more-itertools==4.3.0'
6363
],
6464
':sys_platform=="linux" or sys_platform=="linux2"': [
6565
'secretstorage',

0 commit comments

Comments
 (0)