Skip to content
Merged
7 changes: 1 addition & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@ matrix:
fast_finish: true

include:
- dist: bionic
python: 3.9-dev
env:
- JOB="3.9-dev" PATTERN="(not slow and not network and not clipboard)"

- env:
- JOB="3.8, slow" ENV_FILE="ci/deps/travis-38-slow.yaml" PATTERN="slow" SQL="1"
services:
Expand Down Expand Up @@ -94,7 +89,7 @@ install:
script:
- echo "script start"
- echo "$JOB"
- if [ "$JOB" != "3.9-dev" ]; then source activate pandas-dev; fi
- source activate pandas-dev
- ci/run_tests.sh

after_script:
Expand Down
5 changes: 5 additions & 0 deletions ci/azure/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ jobs:
PANDAS_TESTING_MODE: "deprecate"
EXTRA_APT: "xsel"

py39:
ENV_FILE: ci/deps/azure-39.yaml
CONDA_PY: "39"
PATTERN: "not slow and not network and not clipboard"

steps:
- script: |
if [ "$(uname)" == "Linux" ]; then
Expand Down
17 changes: 17 additions & 0 deletions ci/deps/azure-39.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: pandas-dev
channels:
- conda-forge
dependencies:
- python=3.9.*

# tools
- cython>=0.29.21
- pytest>=5.0.1
- pytest-xdist>=1.21
- hypothesis>=3.58.0
- pytest-azurepipelines

# pandas dependencies
- numpy
- python-dateutil
- pytz
5 changes: 0 additions & 5 deletions ci/setup_env.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
#!/bin/bash -e

if [ "$JOB" == "3.9-dev" ]; then
/bin/bash ci/build39.sh
exit 0
fi

# edit the locale file if needed
if [[ "$(uname)" == "Linux" && -n "$LC_ALL" ]]; then
echo "Adding locale to the first line of pandas/__init__.py"
Expand Down