Skip to content

Commit

Permalink
Proper bash wget inline installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
horta committed Apr 12, 2016
1 parent 2f4682a commit 9fe7df6
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[bumpversion]
current_version = 0.7.68
current_version = 0.7.69
files = setup.py conda-recipe/meta.yaml

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ tool.
- Ubuntu

```
wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/apt_limix_install | bash
bash <(wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/apt_limix_install)
```

- Fedora
```
wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/dnf_limix_install | bash
bash <(wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/dnf_limix_install)
```

- OpenSUSE
```
wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/zypper_limix_install | bash
bash <(wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/zypper_limix_install)
```

### From source
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: limix
version: "0.7.68"
version: "0.7.69"

source:
path: ../
Expand Down
6 changes: 2 additions & 4 deletions deploy/apt_limix_install
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
echo "Installing Limix."

sudo apt-get update
sudo apt-get install build-essential libc6 gfortran g++ \
sudo apt-get -y -q install build-essential libc6 gfortran g++ \
python python-setuptools cython python-numpy python-scipy \
python-matplotlib pkg-config libfreetype6-dev libpng12-dev \
python-h5py liblapack-dev python-pip python-pandas swig \
python-sklearn-lib -y
pip install limix
hash -r
python-sklearn-lib
pip install limix
2 changes: 1 addition & 1 deletion deploy/test.pypi.apt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

sudo apt-get update -y -q
sudo apt-get install wget -y -q
wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/apt_limix_install | bash
bash <(wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/apt_limix_install)
python -c "import limix; print(limix.__version__)"
2 changes: 1 addition & 1 deletion deploy/test.pypi.dnf
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ if type "sudo" > /dev/null 2>&1; then
fi
eval "${prefix}dnf update -y -q"
eval "${prefix}dnf install wget -y -q"
wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/dnf_limix_install | bash
bash <(wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/dnf_limix_install)
python -c "import limix; print(limix.__version__)"
2 changes: 1 addition & 1 deletion deploy/test.pypi.zypper
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

zypper -n update
zypper -n install wget
wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/zypper_limix_install | bash
bash <(wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/zypper_limix_install)
python -c "import limix; print(limix.__version__)"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import importlib

PKG_NAME = 'limix'
VERSION = '0.7.68'
VERSION = '0.7.69'

WORKDIR = os.path.abspath(os.path.dirname(__file__))

Expand Down

0 comments on commit 9fe7df6

Please sign in to comment.