Skip to content

TST: Update Conda CI build to use nightly pandas packages. #254

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 2 commits into from
May 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,16 @@ jobs:
- checkout
- run: ci/config_auth.sh
- run: ci/run_conda.sh
"conda-3.7-NIGHTLY":
docker:
- image: continuumio/miniconda3
environment:
PYTHON: "3.7"
PANDAS: "NIGHTLY"
steps:
- checkout
- run: ci/config_auth.sh
- run: ci/run_conda.sh

workflows:
version: 2
Expand All @@ -56,4 +66,5 @@ workflows:
- "pip-3.6"
- "pip-3.7"
- lint
- "conda-3.6-0.20.1"
- "conda-3.6-0.20.1"
- "conda-3.7-NIGHTLY"
5 changes: 0 additions & 5 deletions ci/requirements-3.6-MASTER.pip

This file was deleted.

7 changes: 7 additions & 0 deletions ci/requirements-3.7-NIGHTLY.conda
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
pydata-google-auth
google-cloud-bigquery==1.10.0
pytest
pytest-cov
codecov
coverage
flake8
2 changes: 1 addition & 1 deletion ci/run_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ conda update -q conda
conda info -a
conda create -q -n test-environment python=$PYTHON
source activate test-environment
if [[ "$PANDAS" == "MASTER" ]]; then
if [[ "$PANDAS" == "NIGHTLY" ]]; then
conda install -q numpy pytz python-dateutil;
PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com";
pip install --pre --upgrade --timeout=60 -f $PRE_WHEELS pandas;
Expand Down