File tree 5 files changed +23
-27
lines changed
5 files changed +23
-27
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,6 @@ matrix:
29
29
fast_finish : true
30
30
31
31
include :
32
- # In allowed failures
33
- - dist : bionic
34
- python : 3.9-dev
35
- env :
36
- - JOB="3.9-dev" PATTERN="(not slow and not network and not clipboard)"
37
- - env :
38
- - JOB="3.8" ENV_FILE="ci/deps/travis-38.yaml" PATTERN="(not slow and not network and not clipboard)"
39
-
40
32
- env :
41
33
- JOB="3.7" ENV_FILE="ci/deps/travis-37.yaml" PATTERN="(not slow and not network and not clipboard)"
42
34
@@ -92,7 +84,7 @@ install:
92
84
script :
93
85
- echo "script start"
94
86
- echo "$JOB"
95
- - if [ "$JOB" != "3.9-dev" ]; then source activate pandas-dev; fi
87
+ - source activate pandas-dev
96
88
- ci/run_tests.sh
97
89
98
90
after_script :
Original file line number Diff line number Diff line change 65
65
PANDAS_TESTING_MODE : " deprecate"
66
66
EXTRA_APT : " xsel"
67
67
68
+ py39 :
69
+ ENV_FILE : ci/deps/azure-39.yaml
70
+ CONDA_PY : " 39"
71
+ PATTERN : " not slow and not network and not clipboard"
72
+
68
73
steps :
69
74
- script : |
70
75
if [ "$(uname)" == "Linux" ]; then
Load Diff This file was deleted.
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