Skip to content

Commit

Permalink
Update Conda CI build to use nightly pandas packages.
Browse files Browse the repository at this point in the history
Remove unused git-based pip requirements file.
  • Loading branch information
tswast committed Mar 9, 2019
1 parent 8a26345 commit 942f5f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:
- run: nox -s lint

# Conda
"conda-3.6-0.20.1":
"conda-3.6-NIGHTLY":
docker:
- image: continuumio/miniconda3
environment:
PYTHON: "3.6"
PANDAS: "0.20.1"
PANDAS: "NIGHTLY"
steps:
- checkout
- run: ci/config_auth.sh
Expand All @@ -65,4 +65,4 @@ workflows:
- "pip-3.6"
- "pip-3.7"
- lint
- "conda-3.6-0.20.1"
- "conda-3.6-NIGHTLY"
5 changes: 0 additions & 5 deletions ci/requirements-3.6-MASTER.pip

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pydata-google-auth
google-cloud-bigquery==1.9.0
google-cloud-bigquery==1.10.0
pytest
pytest-cov
codecov
Expand Down
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

0 comments on commit 942f5f2

Please sign in to comment.