File tree Expand file tree Collapse file tree 1 file changed +21
-13
lines changed
Expand file tree Collapse file tree 1 file changed +21
-13
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,20 @@ jobs:
1010
1111 steps :
1212 - checkout
13+ - restore_cache :
14+ keys :
15+ - tox-v1-{{ checksum "tox.ini" }}
16+ - tox-v1-
1317 - run :
1418 name : Install tox
1519 command : ' sudo pip install tox'
1620 - run :
1721 name : Test with tox
1822 command : ' tox -e py27-core'
23+ - save_cache :
24+ key : tox-v1-{{ checksum "tox.ini" }}
25+ paths :
26+ - .tox
1927
2028 " python-3.4-core " :
2129 docker :
@@ -209,16 +217,16 @@ workflows:
209217 build :
210218 jobs :
211219 - " python-2.7-core"
212- - " python-3.4-core"
213- - " python-3.5-core"
214- - " python-3.6-core"
215- - " python-3.7-core"
216- - " python-2.7-optional"
217- - " python-3.4-optional"
218- - " python-3.5-optional"
219- - " python-3.6-optional"
220- # 3.7 optional disabled due to current shapely incompatibility
221- # - "python-3.7-optional"
222- - " python-2.7-plot_ly"
223- - " python-3.4-plot_ly"
224- - " python-3.7-plot_ly"
220+ # - "python-3.4-core"
221+ # - "python-3.5-core"
222+ # - "python-3.6-core"
223+ # - "python-3.7-core"
224+ # - "python-2.7-optional"
225+ # - "python-3.4-optional"
226+ # - "python-3.5-optional"
227+ # - "python-3.6-optional"
228+ # # 3.7 optional disabled due to current shapely incompatibility
229+ # # - "python-3.7-optional"
230+ # - "python-2.7-plot_ly"
231+ # - "python-3.4-plot_ly"
232+ # - "python-3.7-plot_ly"
You can’t perform that action at this time.
0 commit comments