File tree Expand file tree Collapse file tree 8 files changed +11
-13
lines changed Expand file tree Collapse file tree 8 files changed +11
-13
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.7.68
2
+ current_version = 0.7.69
3
3
files = setup.py conda-recipe/meta.yaml
4
4
Original file line number Diff line number Diff line change @@ -37,17 +37,17 @@ tool.
37
37
- Ubuntu
38
38
39
39
```
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)
41
41
```
42
42
43
43
- Fedora
44
44
```
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)
46
46
```
47
47
48
48
- OpenSUSE
49
49
```
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)
51
51
```
52
52
53
53
### From source
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : limix
3
- version : " 0.7.68 "
3
+ version : " 0.7.69 "
4
4
5
5
source :
6
6
path : ../
Original file line number Diff line number Diff line change 3
3
echo " Installing Limix."
4
4
5
5
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++ \
7
7
python python-setuptools cython python-numpy python-scipy \
8
8
python-matplotlib pkg-config libfreetype6-dev libpng12-dev \
9
9
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
13
11
pip install limix
Original file line number Diff line number Diff line change 2
2
3
3
sudo apt-get update -y -q
4
4
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)
6
6
python -c " import limix; print(limix.__version__)"
Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ if type "sudo" > /dev/null 2>&1; then
6
6
fi
7
7
eval " ${prefix} dnf update -y -q"
8
8
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)
10
10
python -c " import limix; print(limix.__version__)"
Original file line number Diff line number Diff line change 2
2
3
3
zypper -n update
4
4
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)
6
6
python -c " import limix; print(limix.__version__)"
Original file line number Diff line number Diff line change 5
5
import importlib
6
6
7
7
PKG_NAME = 'limix'
8
- VERSION = '0.7.68 '
8
+ VERSION = '0.7.69 '
9
9
10
10
WORKDIR = os .path .abspath (os .path .dirname (__file__ ))
11
11
You can’t perform that action at this time.
0 commit comments