Skip to content

CI: move py39 build to conda #33948 #37039

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Nov 14, 2020
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
12 changes: 0 additions & 12 deletions ci/build39.sh

This file was deleted.

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