Skip to content

Commit 59228d9

Browse files
authored
TST: Update Conda CI build to use nightly pandas packages. (#254)
* TST: Update Conda CI build to use nightly pandas packages. Remove unused git-based pip requirements file. * Restore non-nightly conda build.
1 parent e590317 commit 59228d9

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

.circleci/config.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,16 @@ jobs:
4747
- checkout
4848
- run: ci/config_auth.sh
4949
- run: ci/run_conda.sh
50+
"conda-3.7-NIGHTLY":
51+
docker:
52+
- image: continuumio/miniconda3
53+
environment:
54+
PYTHON: "3.7"
55+
PANDAS: "NIGHTLY"
56+
steps:
57+
- checkout
58+
- run: ci/config_auth.sh
59+
- run: ci/run_conda.sh
5060

5161
workflows:
5262
version: 2
@@ -56,4 +66,5 @@ workflows:
5666
- "pip-3.6"
5767
- "pip-3.7"
5868
- lint
59-
- "conda-3.6-0.20.1"
69+
- "conda-3.6-0.20.1"
70+
- "conda-3.7-NIGHTLY"

ci/requirements-3.6-MASTER.pip

Lines changed: 0 additions & 5 deletions
This file was deleted.

ci/requirements-3.7-NIGHTLY.conda

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
pydata-google-auth
2+
google-cloud-bigquery==1.10.0
3+
pytest
4+
pytest-cov
5+
codecov
6+
coverage
7+
flake8

ci/run_conda.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ conda update -q conda
1111
conda info -a
1212
conda create -q -n test-environment python=$PYTHON
1313
source activate test-environment
14-
if [[ "$PANDAS" == "MASTER" ]]; then
14+
if [[ "$PANDAS" == "NIGHTLY" ]]; then
1515
conda install -q numpy pytz python-dateutil;
1616
PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com";
1717
pip install --pre --upgrade --timeout=60 -f $PRE_WHEELS pandas;

0 commit comments

Comments
 (0)