Skip to content

Commit 12e2287

Browse files
dnadeau4doutriaux1
authored andcommitted
V3.1.0 1 (#36)
* version 3.1.1 * add conda_build_config.yaml * fix conda upload for new recipe * unpin conda-build to get the latest * only need to upload once * upload cdtime once * add conda-upload to macos py3
1 parent b8c370e commit 12e2287

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.circleci/config.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ jobs:
8888
- run: *create_conda_env
8989
- run: *setup_cdtime
9090
- run: *run_cdtime_tests
91-
- run: *upload_cdtime
9291
- store_artifacts:
9392
path: tests_html
9493
destination: tests_html
@@ -124,7 +123,6 @@ jobs:
124123
- run: *create_conda_env
125124
- run: *setup_cdtime
126125
- run: *run_cdtime_tests
127-
- run: *upload_cdtime
128126
- store_artifacts:
129127
path: tests_html
130128
destination: tests_html
@@ -160,5 +158,4 @@ workflows:
160158
requires:
161159
- linux_cdtime_py2
162160

163-
164161

ci-support/conda_upload.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/usr/bin/env bash
22
PKG_NAME=cdtime
33
USER=cdat
4-
export VERSION="3.1.0"
4+
export VERSION="3.1.1"
55
echo "Trying to upload to conda"
66
echo ""
77
echo "Activating base env"
88
source activate base
99
echo "Making sure conda-build is installed"
10-
conda install "conda-build<3.10"
10+
conda install conda-build
1111
echo "Updating conda"
1212
conda update -y -q conda
1313
if [ `uname` == "Linux" ]; then
@@ -35,6 +35,5 @@ ln -s ../recipe cdtime
3535
export BRANCH=${CIRCLE_BRANCH}
3636
python ./prep_for_build.py -b ${BRANCH}
3737

38-
conda build ${PKG_NAME} -c cdat/label/unstable -c conda-forge --python 2.7
39-
conda build ${PKG_NAME} -c cdat/label/unstable -c conda-forge --python 3.6
38+
conda build ${PKG_NAME} -c cdat/label/unstable -c cdat/label/nightly -c conda-forge
4039
anaconda -t $CONDA_UPLOAD_TOKEN upload -u $USER -l $LABEL $CONDA_BLD_PATH/$OS/${PKG_NAME}-$VERSION.`date +%Y*`0.tar.bz2 --force

recipe/conda_build_config.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
python:
2+
- 3.7
3+
- 3.6
4+
- 2.7
5+
6+
numpy:
7+
- 1.14
8+

0 commit comments

Comments
 (0)