-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from bashtage/rls-1160
RLS: Release 1.16.0
- Loading branch information
Showing
7 changed files
with
49 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [[ ${TRAVIS_OS_NAME} == "osx" ]]; then wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda3.sh; fi | ||
if [[ ${TRAVIS_OS_NAME} == "linux" ]]; then wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda3.sh; fi | ||
chmod +x miniconda3.sh | ||
./miniconda3.sh -b | ||
export PATH=${HOME}/miniconda3/bin:$PATH | ||
conda config --set always_yes true | ||
conda update --all --quiet | ||
conda create -n randomgen-test ${PKGS} pip --quiet | ||
source activate randomgen-test | ||
|
||
PKGS="python=${PYTHON} matplotlib numpy" | ||
if [[ -n ${NUMPY} ]]; then PKGS="${PKGS}=${NUMPY}"; fi | ||
PKGS="${PKGS} Cython"; | ||
if [[ -n ${CYTHON} ]]; then PKGS="${PKGS}=${CYTHON}"; fi | ||
PKGS="${PKGS} pandas"; | ||
if [[ -n ${PANDAS} ]]; then PKGS="${PKGS}=${PANDAS}"; fi | ||
echo conda create -n randomgen-test ${PKGS} pytest setuptools nose --quiet | ||
conda create -n randomgen-test ${PKGS} pytest setuptools nose --quiet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
pip install numpy cython pandas pytest setuptools nose matplotlib --quiet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
numpy>=1.10 | ||
numpy>=1.13 | ||
cython>=0.26 | ||
setuptools | ||
wheel |