Skip to content

Commit f254fe5

Browse files
authored
Merge pull request #39 from CDAT/no_downgrade
no dowgrade
2 parents 2834c20 + 7f2e6c4 commit f254fe5

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,17 @@ aliases:
1616
- &create_conda_env
1717
name: create_conda_env
1818
environment:
19-
PKGS: "cdms2 'libcdms>=3.1.2' mesalib matplotlib 'numpy>1.14' vcs 'proj4<5' testsrunner 'vtk-cdat>8.1'"
19+
PKGS: "cdms2 'libcdms>=3.1.2' mesalib matplotlib numpy vcs 'proj4<5' testsrunner vtk-cdat"
2020
CHANNELS: "-c cdat/label/nightly -c cdat-forge -c conda-forge -c cdat"
2121
command: |
2222
export PATH=$WORKDIR/miniconda/bin:$PATH
2323
conda config --set always_yes yes --set changeps1 no
2424
conda update -y -q conda
2525
conda config --set anaconda_upload no
26-
conda install -f "conda<4.6"
2726
if [[ $PY_VER = "py2" ]]; then
2827
conda create -q -n $PY_VER $CHANNELS $PKGS 'python<3' $FFMPEG ${CONDA_COMPILERS}
2928
else
30-
conda create -q -n $PY_VER $CHANNELS $PKGS 'python>3' $FFMPEG ${CONDA_COMPILERS} $COVERAGE_PKGS
29+
conda create -q -n $PY_VER $CHANNELS $PKGS 'python>=3.6' $FFMPEG ${CONDA_COMPILERS} $COVERAGE_PKGS
3130
fi
3231
3332
- &setup_vcsaddons

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ script:
1818
- export UVCDAT_SETUP_PATH=${HOME}
1919
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then export COMPILERS=gcc_linux-64; export LDSHARED_FLAGS="-shared -pthread" ; export FFMPEG="'ffmpeg>4.0.1'" ; fi
2020
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then export COMPILERS=clang_osx-64; export LDSHARED_FLAGS="-bundle -undefined dynamic_lookup" ; export FFMPEG="'ffmpeg>=4.1'" ; fi
21-
- conda create -q -n py2 -c cdat/label/nightly -c cdat-forge -c conda-forge -c cdat cdms2 'libcdms >=3.1.2' testsrunner matplotlib mesalib vcs $FFMPEG "proj4<5" "python<3" ${COMPILERS}
22-
- conda create -q -n py3 -c cdat/label/nightly -c cdat-forge -c conda-forge -c cdat cdms2 'libcdms >=3.1.2' testsrunner matplotlib mesalib vcs $FFMPEG "proj4<5" "python>3" ${COMPILERS}
21+
- conda create -q -n py2 -c cdat/label/nightly -c cdat-forge -c conda-forge -c cdat cdms2 'libcdms>=3.1.2' testsrunner matplotlib mesalib vcs $FFMPEG "proj4<5" "python<3" ${COMPILERS}
22+
- conda create -q -n py3 -c cdat/label/nightly -c cdat-forge -c conda-forge -c cdat cdms2 'libcdms>=3.1.2' testsrunner matplotlib mesalib vcs $FFMPEG "proj4<5" "python=3.6" ${COMPILERS}
2323
- echo $TRAVIS_BRANCH
2424
- export TRAVIS_PR_BRANCH=$TRAVIS_BRANCH
2525
- echo $TRAVIS_EVENT_TYPE

0 commit comments

Comments
 (0)