Skip to content

Commit d2a53e9

Browse files
committed
TST: Update Conda CI build to use nightly pandas packages.
Remove unused git-based pip requirements file.
1 parent e590317 commit d2a53e9

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
- run: nox -s lint
3838

3939
# Conda
40-
"conda-3.6-0.20.1":
40+
"conda-3.6-NIGHTLY":
4141
docker:
4242
- image: continuumio/miniconda3
4343
environment:
4444
PYTHON: "3.6"
45-
PANDAS: "0.20.1"
45+
PANDAS: "NIGHTLY"
4646
steps:
4747
- checkout
4848
- run: ci/config_auth.sh
@@ -56,4 +56,4 @@ workflows:
5656
- "pip-3.6"
5757
- "pip-3.7"
5858
- lint
59-
- "conda-3.6-0.20.1"
59+
- "conda-3.6-NIGHTLY"

ci/requirements-3.6-MASTER.pip

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

ci/requirements-3.6-0.20.1.conda renamed to ci/requirements-3.6-NIGHTLY.conda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pydata-google-auth
2-
google-cloud-bigquery==1.9.0
2+
google-cloud-bigquery==1.10.0
33
pytest
44
pytest-cov
55
codecov

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)