File tree 4 files changed +23
-11
lines changed
4 files changed +23
-11
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,6 @@ matrix:
35
35
fast_finish : true
36
36
37
37
include :
38
- - dist : bionic
39
- python : 3.9-dev
40
- env :
41
- - JOB="3.9-dev" PATTERN="(not slow and not network and not clipboard)"
42
-
43
38
- env :
44
39
- JOB="3.8, slow" ENV_FILE="ci/deps/travis-38-slow.yaml" PATTERN="slow" SQL="1"
45
40
services :
@@ -94,7 +89,7 @@ install:
94
89
script :
95
90
- echo "script start"
96
91
- echo "$JOB"
97
- - if [ "$JOB" != "3.9-dev" ]; then source activate pandas-dev; fi
92
+ - source activate pandas-dev
98
93
- ci/run_tests.sh
99
94
100
95
after_script :
Original file line number Diff line number Diff line change 61
61
PANDAS_TESTING_MODE : " deprecate"
62
62
EXTRA_APT : " xsel"
63
63
64
+ py39 :
65
+ ENV_FILE : ci/deps/azure-39.yaml
66
+ CONDA_PY : " 39"
67
+ PATTERN : " not slow and not network and not clipboard"
68
+
64
69
steps :
65
70
- script : |
66
71
if [ "$(uname)" == "Linux" ]; then
Original file line number Diff line number Diff line change
1
+ name : pandas-dev
2
+ channels :
3
+ - conda-forge
4
+ dependencies :
5
+ - python=3.9.*
6
+
7
+ # tools
8
+ - cython>=0.29.21
9
+ - pytest>=5.0.1
10
+ - pytest-xdist>=1.21
11
+ - hypothesis>=3.58.0
12
+ - pytest-azurepipelines
13
+
14
+ # pandas dependencies
15
+ - numpy
16
+ - python-dateutil
17
+ - pytz
Original file line number Diff line number Diff line change 1
1
#! /bin/bash -e
2
2
3
- if [ " $JOB " == " 3.9-dev" ]; then
4
- /bin/bash ci/build39.sh
5
- exit 0
6
- fi
7
-
8
3
# edit the locale file if needed
9
4
if [[ " $( uname) " == " Linux" && -n " $LC_ALL " ]]; 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