From 91c9284c44a1906928ec87c0138e73f456b21d6e Mon Sep 17 00:00:00 2001 From: Greg Blumberg Date: Fri, 11 Jan 2019 18:53:42 -0500 Subject: [PATCH] Added dateutil to conda install on CI --- .appveyor.yml | 2 +- ci/install.sh | 2 +- environment.yml | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index cdcb077f..7b483f96 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -20,7 +20,7 @@ install: # Install dependencies - activate test-environment - - "conda install -q -c conda-forge pyside pyinstaller pytest requests numpy=%NUMPY_VERSION%" + - "conda install -q -c conda-forge pyside pyinstaller pytest requests dateutil numpy=%NUMPY_VERSION%" # Add to path the current folder #- "SET PYTHONPATH=%PYTHONPATH%;%CD%" diff --git a/ci/install.sh b/ci/install.sh index 2bbd6869..be535c4f 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -23,7 +23,7 @@ conda update -q conda conda install -n -q root _license conda info -a conda config --add channels conda-forge -conda create -q -n test-environment python=$PYTHON_VERSION pyside pyinstaller requests conda-build anaconda-client numpy=$NUMPY_VERSION +conda create -q -n test-environment python=$PYTHON_VERSION pyside pyinstaller requests dateutil conda-build anaconda-client numpy=$NUMPY_VERSION source activate test-environment pip install --upgrade pip diff --git a/environment.yml b/environment.yml index 119260a0..e7491018 100644 --- a/environment.yml +++ b/environment.yml @@ -11,6 +11,8 @@ dependencies: - sphinx-rtd-theme - pytest-cov - matplotlib + - requests + - dateutil - pip: - sphinx-prompt - pydocstyle