Skip to content
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