Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
- checkout
- run: ci/config_auth.sh
- run: ci/run_conda.sh
"conda-3.9-NIGHTLY":
"conda-3.10":
docker:
- image: continuumio/miniconda3
environment:
PYTHON: "3.9"
PANDAS: "NIGHTLY"
PYTHON: "3.10"
PANDAS: "1.3.4"
steps:
- checkout
- run: ci/config_auth.sh
Expand All @@ -31,4 +31,4 @@ workflows:
build:
jobs:
- "conda-3.7"
- "conda-3.9-NIGHTLY"
- "conda-3.10"
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
codecov
coverage
db-dtypes
pydata-google-auth
fastavro
flake8
google-cloud-bigquery
google-cloud-bigquery-storage
numpy
pyarrow
pydata-google-auth
pytest
pytest-cov
codecov
coverage
flake8
tqdm
10 changes: 1 addition & 9 deletions ci/run_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,14 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
# Install dependencies using Conda

conda config --set always_yes yes --set changeps1 no
conda config --add channels pandas
conda config --add channels conda-forge
conda update -q conda
conda info -a
conda create -q -n test-environment python=$PYTHON
source activate test-environment
REQ="ci/requirements-${PYTHON}-${PANDAS}"
conda install -q --file "$REQ.conda";

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;
else
conda install -q pandas=$PANDAS;
fi
conda install -q pandas=$PANDAS;

python setup.py develop --no-deps

Expand Down