diff --git a/.circleci/config.yml b/.circleci/config.yml index bd957493..053280cd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -56,4 +66,5 @@ workflows: - "pip-3.6" - "pip-3.7" - lint - - "conda-3.6-0.20.1" \ No newline at end of file + - "conda-3.6-0.20.1" + - "conda-3.7-NIGHTLY" \ No newline at end of file diff --git a/ci/requirements-3.6-MASTER.pip b/ci/requirements-3.6-MASTER.pip deleted file mode 100644 index 7f446342..00000000 --- a/ci/requirements-3.6-MASTER.pip +++ /dev/null @@ -1,5 +0,0 @@ ---pre -f https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com/ pandas -git+https://github.com/googleapis/google-cloud-python.git#egg=version_subpkg&subdirectory=api_core -git+https://github.com/googleapis/google-cloud-python.git#egg=version_subpkg&subdirectory=core -git+https://github.com/googleapis/google-cloud-python.git#egg=version_subpkg&subdirectory=bigquery -pydata-google-auth==0.1.2 \ No newline at end of file diff --git a/ci/requirements-3.7-NIGHTLY.conda b/ci/requirements-3.7-NIGHTLY.conda new file mode 100644 index 00000000..419abbad --- /dev/null +++ b/ci/requirements-3.7-NIGHTLY.conda @@ -0,0 +1,7 @@ +pydata-google-auth +google-cloud-bigquery==1.10.0 +pytest +pytest-cov +codecov +coverage +flake8 diff --git a/ci/run_conda.sh b/ci/run_conda.sh index 60ae6ff0..d0b892aa 100755 --- a/ci/run_conda.sh +++ b/ci/run_conda.sh @@ -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;