Skip to content

Commit 8e12b9e

Browse files
author
Kevin Paul
authored
Merge pull request #22 from kmpaul/cleanup
Cleanup before release
2 parents 49971fe + bac1170 commit 8e12b9e

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.circleci/config.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323
steps:
2424
- checkout
2525
- restore_cache:
26-
key: deps-{{ .Branch }}-2.7-mpich-{{ checksum "ci/environment-dev-2.7-mpich.yml" }}
26+
key: deps-{{ .Branch }}-2.7-mpich-{{ checksum ".circleci/env-2.7-mpich.yml" }}
2727
- run:
2828
name: Install and activate conda environment
29-
command: ./ci/install-circle.sh
29+
command: .circleci/install.sh
3030
- run:
3131
name: Running tests
3232
command: |
3333
source activate ${ENV_NAME}
3434
pytest --junitxml=test-reports/junit.xml --cov=./ dask_mpi/tests/ --verbose
3535
- save_cache:
36-
key: deps-{{ .Branch }}-2.7-mpich-{{ checksum "ci/environment-dev-2.7-mpich.yml" }}
36+
key: deps-{{ .Branch }}-2.7-mpich-{{ checksum ".circleci/env-2.7-mpich.yml" }}
3737
paths:
3838
- "/opt/conda/envs/${ENV_NAME}/"
3939
- "/opt/conda/pkgs"
@@ -53,17 +53,17 @@ jobs:
5353
steps:
5454
- checkout
5555
- restore_cache:
56-
key: deps-{{ .Branch }}-2.7-openmpi-{{ checksum "ci/environment-dev-2.7-openmpi.yml" }}
56+
key: deps-{{ .Branch }}-2.7-openmpi-{{ checksum ".circleci/env-2.7-openmpi.yml" }}
5757
- run:
5858
name: Install and activate conda environment
59-
command: ./ci/install-circle.sh
59+
command: .circleci/install.sh
6060
- run:
6161
name: Running tests
6262
command: |
6363
source activate ${ENV_NAME}
6464
pytest --junitxml=test-reports/junit.xml --cov=./ dask_mpi/tests/ --verbose
6565
- save_cache:
66-
key: deps-{{ .Branch }}-2.7-openmpi-{{ checksum "ci/environment-dev-2.7-openmpi.yml" }}
66+
key: deps-{{ .Branch }}-2.7-openmpi-{{ checksum ".circleci/env-2.7-openmpi.yml" }}
6767
paths:
6868
- "/opt/conda/envs/${ENV_NAME}/"
6969
- "/opt/conda/pkgs"
@@ -80,17 +80,17 @@ jobs:
8080
steps:
8181
- checkout
8282
- restore_cache:
83-
key: deps-{{ .Branch }}-3.6-mpich-{{ checksum "ci/environment-dev-3.6-mpich.yml" }}
83+
key: deps-{{ .Branch }}-3.6-mpich-{{ checksum ".circleci/env-3.6-mpich.yml" }}
8484
- run:
8585
name: Install and activate conda environment
86-
command: ./ci/install-circle.sh
86+
command: .circleci/install.sh
8787
- run:
8888
name: Running tests
8989
command: |
9090
source activate ${ENV_NAME}
9191
pytest --junitxml=test-reports/junit.xml --cov=./ dask_mpi/tests/ --verbose
9292
- save_cache:
93-
key: deps-{{ .Branch }}-3.6-mpich-{{ checksum "ci/environment-dev-3.6-mpich.yml" }}
93+
key: deps-{{ .Branch }}-3.6-mpich-{{ checksum ".circleci/env-3.6-mpich.yml" }}
9494
paths:
9595
- "/opt/conda/envs/${ENV_NAME}/"
9696
- "/opt/conda/pkgs"
@@ -116,17 +116,17 @@ jobs:
116116
steps:
117117
- checkout
118118
- restore_cache:
119-
key: deps-{{ .Branch }}-3.6-openmpi-{{ checksum "ci/environment-dev-3.6-openmpi.yml" }}
119+
key: deps-{{ .Branch }}-3.6-openmpi-{{ checksum ".circleci/env-3.6-openmpi.yml" }}
120120
- run:
121121
name: Install and activate conda environment
122-
command: ./ci/install-circle.sh
122+
command: .circleci/install.sh
123123
- run:
124124
name: Running tests
125125
command: |
126126
source activate ${ENV_NAME}
127127
pytest --junitxml=test-reports/junit.xml --cov=./ dask_mpi/tests/ --verbose
128128
- save_cache:
129-
key: deps-{{ .Branch }}-3.6-openmpi-{{ checksum "ci/environment-dev-3.6-openmpi.yml" }}
129+
key: deps-{{ .Branch }}-3.6-openmpi-{{ checksum ".circleci/env-3.6-openmpi.yml" }}
130130
paths:
131131
- "/opt/conda/envs/${ENV_NAME}/"
132132
- "/opt/conda/pkgs"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

ci/install-circle.sh renamed to .circleci/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ conda config --set always_yes true --set changeps1 false --set quiet true
77
conda update -q conda
88
conda config --set pip_interop_enabled True # Enable pip interoperability
99
conda config --add channels conda-forge
10-
conda env create -f ci/environment-dev-${PYTHON}-${MPI}.yml --name=${ENV_NAME} --quiet
10+
conda env create -f .circleci/env-${PYTHON}-${MPI}.yml --name=${ENV_NAME} --quiet
1111
conda env list
1212
source activate ${ENV_NAME}
1313
pip install pip --upgrade

dask_mpi/tests/core_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from distributed import Client
33
from distributed.metrics import time
44

5-
from dask_mpi.core import initialize
5+
from dask_mpi import initialize
66

77
initialize()
88

0 commit comments

Comments
 (0)