File tree 4 files changed +19
-29
lines changed
4 files changed +19
-29
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,9 @@ matrix:
30
30
- python : 3.5
31
31
32
32
include :
33
- - dist : bionic
34
- # 18.04
35
- python : 3.8.0
33
+ - dist : trusty
36
34
env :
37
- - JOB="3.8-dev " PATTERN="(not slow and not network)"
35
+ - JOB="3.8" ENV_FILE="ci/deps/travis-38.yaml " PATTERN="(not slow and not network)"
38
36
39
37
- dist : trusty
40
38
env :
@@ -88,7 +86,7 @@ install:
88
86
script :
89
87
- echo "script start"
90
88
- echo "$JOB"
91
- - if [ "$JOB" != "3.8-dev" ]; then source activate pandas-dev; fi
89
+ - source activate pandas-dev
92
90
- ci/run_tests.sh
93
91
94
92
after_script :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : pandas-dev
2
+ channels :
3
+ - defaults
4
+ - conda-forge
5
+ dependencies :
6
+ - python=3.8.*
7
+ - cython>=0.29.13
8
+ - numpy
9
+ - python-dateutil
10
+ - nomkl
11
+ - pytz
12
+ # universal
13
+ - pytest>=5.0.0
14
+ - pytest-xdist>=1.29.0
15
+ - hypothesis>=3.58.0
16
+ - pip
Original file line number Diff line number Diff line change 1
1
#! /bin/bash -e
2
2
3
- if [ " $JOB " == " 3.8-dev" ]; then
4
- /bin/bash ci/build38.sh
5
- exit 0
6
- fi
7
-
8
3
# edit the locale file if needed
9
4
if [ -n " $LOCALE_OVERRIDE " ]; then
10
5
echo " Adding locale to the first line of pandas/__init__.py"
You can’t perform that action at this time.
0 commit comments