-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow for join between two multi-index dataframe instances
- Loading branch information
harisbal
committed
Sep 19, 2018
1 parent
b1c113f
commit de6c469
Showing
787 changed files
with
90,112 additions
and
58,190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
version: 2 | ||
jobs: | ||
|
||
# -------------------------------------------------------------------------- | ||
# 0. py27_compat | ||
# -------------------------------------------------------------------------- | ||
py27_compat: | ||
docker: | ||
- image: continuumio/miniconda:latest | ||
# databases configuration | ||
- image: circleci/postgres:9.6.5-alpine-ram | ||
environment: | ||
POSTGRES_USER: postgres | ||
POSTGRES_DB: pandas_nosetest | ||
- image: circleci/mysql:8-ram | ||
environment: | ||
MYSQL_USER: "root" | ||
MYSQL_HOST: "localhost" | ||
MYSQL_ALLOW_EMPTY_PASSWORD: "true" | ||
MYSQL_DATABASE: "pandas_nosetest" | ||
environment: | ||
JOB: "2.7_COMPAT" | ||
ENV_FILE: "ci/circle-27-compat.yaml" | ||
LOCALE_OVERRIDE: "it_IT.UTF-8" | ||
MINICONDA_DIR: /home/ubuntu/miniconda3 | ||
steps: | ||
- checkout | ||
- run: | ||
name: build | ||
command: | | ||
./ci/install_circle.sh | ||
./ci/show_circle.sh | ||
- run: | ||
name: test | ||
command: ./ci/run_circle.sh --skip-slow --skip-network | ||
|
||
# -------------------------------------------------------------------------- | ||
# 1. py36_locale | ||
# -------------------------------------------------------------------------- | ||
py36_locale: | ||
docker: | ||
- image: continuumio/miniconda:latest | ||
# databases configuration | ||
- image: circleci/postgres:9.6.5-alpine-ram | ||
environment: | ||
POSTGRES_USER: postgres | ||
POSTGRES_DB: pandas_nosetest | ||
- image: circleci/mysql:8-ram | ||
environment: | ||
MYSQL_USER: "root" | ||
MYSQL_HOST: "localhost" | ||
MYSQL_ALLOW_EMPTY_PASSWORD: "true" | ||
MYSQL_DATABASE: "pandas_nosetest" | ||
|
||
environment: | ||
JOB: "3.6_LOCALE" | ||
ENV_FILE: "ci/circle-36-locale.yaml" | ||
LOCALE_OVERRIDE: "zh_CN.UTF-8" | ||
MINICONDA_DIR: /home/ubuntu/miniconda3 | ||
steps: | ||
- checkout | ||
- run: | ||
name: build | ||
command: | | ||
./ci/install_circle.sh | ||
./ci/show_circle.sh | ||
- run: | ||
name: test | ||
command: ./ci/run_circle.sh --skip-slow --skip-network | ||
|
||
# -------------------------------------------------------------------------- | ||
# 2. py36_locale_slow | ||
# -------------------------------------------------------------------------- | ||
py36_locale_slow: | ||
docker: | ||
- image: continuumio/miniconda:latest | ||
# databases configuration | ||
- image: circleci/postgres:9.6.5-alpine-ram | ||
environment: | ||
POSTGRES_USER: postgres | ||
POSTGRES_DB: pandas_nosetest | ||
- image: circleci/mysql:8-ram | ||
environment: | ||
MYSQL_USER: "root" | ||
MYSQL_HOST: "localhost" | ||
MYSQL_ALLOW_EMPTY_PASSWORD: "true" | ||
MYSQL_DATABASE: "pandas_nosetest" | ||
|
||
environment: | ||
JOB: "3.6_LOCALE_SLOW" | ||
ENV_FILE: "ci/circle-36-locale_slow.yaml" | ||
LOCALE_OVERRIDE: "zh_CN.UTF-8" | ||
MINICONDA_DIR: /home/ubuntu/miniconda3 | ||
steps: | ||
- checkout | ||
- run: | ||
name: build | ||
command: | | ||
./ci/install_circle.sh | ||
./ci/show_circle.sh | ||
- run: | ||
name: test | ||
command: ./ci/run_circle.sh --only-slow --skip-network | ||
|
||
# -------------------------------------------------------------------------- | ||
# 3. py35_ascii | ||
# -------------------------------------------------------------------------- | ||
py35_ascii: | ||
docker: | ||
- image: continuumio/miniconda:latest | ||
# databases configuration | ||
- image: circleci/postgres:9.6.5-alpine-ram | ||
environment: | ||
POSTGRES_USER: postgres | ||
POSTGRES_DB: pandas_nosetest | ||
- image: circleci/mysql:8-ram | ||
environment: | ||
MYSQL_USER: "root" | ||
MYSQL_HOST: "localhost" | ||
MYSQL_ALLOW_EMPTY_PASSWORD: "true" | ||
MYSQL_DATABASE: "pandas_nosetest" | ||
|
||
environment: | ||
JOB: "3.5_ASCII" | ||
ENV_FILE: "ci/circle-35-ascii.yaml" | ||
LOCALE_OVERRIDE: "C" | ||
MINICONDA_DIR: /home/ubuntu/miniconda3 | ||
steps: | ||
- checkout | ||
- run: | ||
name: build | ||
command: | | ||
./ci/install_circle.sh | ||
./ci/show_circle.sh | ||
- run: | ||
name: test | ||
command: ./ci/run_circle.sh --skip-slow --skip-network | ||
|
||
|
||
workflows: | ||
version: 2 | ||
build_and_test: | ||
jobs: | ||
- py27_compat | ||
- py36_locale | ||
- py36_locale_slow | ||
- py35_ascii |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.