Skip to content

Commit 9fe7df6

Browse files
committed
Proper bash wget inline installation.
1 parent 2f4682a commit 9fe7df6

File tree

8 files changed

+11
-13
lines changed

8 files changed

+11
-13
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[bumpversion]
2-
current_version = 0.7.68
2+
current_version = 0.7.69
33
files = setup.py conda-recipe/meta.yaml
44

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ tool.
3737
- Ubuntu
3838

3939
```
40-
wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/apt_limix_install | bash
40+
bash <(wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/apt_limix_install)
4141
```
4242
4343
- Fedora
4444
```
45-
wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/dnf_limix_install | bash
45+
bash <(wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/dnf_limix_install)
4646
```
4747
4848
- OpenSUSE
4949
```
50-
wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/zypper_limix_install | bash
50+
bash <(wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/zypper_limix_install)
5151
```
5252
5353
### From source

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: limix
3-
version: "0.7.68"
3+
version: "0.7.69"
44

55
source:
66
path: ../

deploy/apt_limix_install

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@
33
echo "Installing Limix."
44

55
sudo apt-get update
6-
sudo apt-get install build-essential libc6 gfortran g++ \
6+
sudo apt-get -y -q install build-essential libc6 gfortran g++ \
77
python python-setuptools cython python-numpy python-scipy \
88
python-matplotlib pkg-config libfreetype6-dev libpng12-dev \
99
python-h5py liblapack-dev python-pip python-pandas swig \
10-
python-sklearn-lib -y
11-
pip install limix
12-
hash -r
10+
python-sklearn-lib
1311
pip install limix

deploy/test.pypi.apt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
sudo apt-get update -y -q
44
sudo apt-get install wget -y -q
5-
wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/apt_limix_install | bash
5+
bash <(wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/apt_limix_install)
66
python -c "import limix; print(limix.__version__)"

deploy/test.pypi.dnf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ if type "sudo" > /dev/null 2>&1; then
66
fi
77
eval "${prefix}dnf update -y -q"
88
eval "${prefix}dnf install wget -y -q"
9-
wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/dnf_limix_install | bash
9+
bash <(wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/dnf_limix_install)
1010
python -c "import limix; print(limix.__version__)"

deploy/test.pypi.zypper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
zypper -n update
44
zypper -n install wget
5-
wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/zypper_limix_install | bash
5+
bash <(wget -O - https://raw.githubusercontent.com/PMBio/limix/master/deploy/zypper_limix_install)
66
python -c "import limix; print(limix.__version__)"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import importlib
66

77
PKG_NAME = 'limix'
8-
VERSION = '0.7.68'
8+
VERSION = '0.7.69'
99

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

0 commit comments

Comments
 (0)