Skip to content

Commit

Permalink
Pin llvmlite in CI scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
sklam committed Nov 17, 2020
1 parent ee2c20d commit e2bb8df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildscripts/incremental/setup_conda_environment.cmd
Expand Up @@ -28,7 +28,7 @@ conda create -n %CONDA_ENV% -q -y python=%PYTHON% numpy=%NUMPY% cffi pip scipy j

call activate %CONDA_ENV%
@rem Install latest llvmlite build
%CONDA_INSTALL% -c numba llvmlite
%CONDA_INSTALL% -c numba "llvmlite=0.35.*"
@rem Install dependencies for building the documentation
if "%BUILD_DOC%" == "yes" (%CONDA_INSTALL% sphinx sphinx_rtd_theme pygments)
@rem Install dependencies for code coverage (codecov.io)
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/incremental/setup_conda_environment.sh
Expand Up @@ -76,7 +76,7 @@ elif [[ $(uname) == Darwin ]]; then
fi

# Install latest llvmlite build
$CONDA_INSTALL -c numba llvmlite
$CONDA_INSTALL -c numba "llvmlite=0.35.*"

# Install dependencies for building the documentation
if [ "$BUILD_DOC" == "yes" ]; then $CONDA_INSTALL sphinx=2.4.4 sphinx_rtd_theme pygments numpydoc; fi
Expand Down

0 comments on commit e2bb8df

Please sign in to comment.