Skip to content

Commit 194c8e5

Browse files
committed
Update dependencies and version. Travis changes.
Update dependencies and version. travis
1 parent c6b2432 commit 194c8e5

File tree

5 files changed

+9
-27
lines changed

5 files changed

+9
-27
lines changed

.travis.yml

-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
language:
22
ruby
33

4-
env:
5-
- CPLUS_INCLUDE_PATH=/usr/include/atlas C_INCLUDE_PATH=/usr/include/atlas
6-
74
rvm:
85
- '1.9.3'
96
- '2.0'
@@ -18,11 +15,9 @@ script: "bundle exec rake test"
1815

1916
install:
2017
- gem install bundler
21-
- ./.build.sh
2218
- bundle install
2319

2420
before_install:
2521
- sudo apt-get update -qq
26-
- sudo apt-get install -qq libatlas-base-dev
2722
- sudo apt-get install -y libgsl0-dev r-base r-base-dev
2823
- sudo Rscript -e "install.packages(c('Rserve','irr'),,'http://cran.us.r-project.org')"

CONTRIBUTING.md

+3-19
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,11 @@
22

33
## Installing statsample development dependencies
44

5-
If you want to run the full test suite, you will need the latest unreleased nmatrix and gsl-nmatrix ruby gems. They will be released upstream soon but please follow this procdure for now.
5+
Keep in mind that either nmatrix OR rb-gsl are NOT NECESSARY for using statsample. They are just required for an optional speed up.
66

7-
Keep in mind that either nmatrix OR gsl-nmatrix are NOT NECESSARY for using statsample. They are just required for an optional speed up.
7+
Statsample also works with [rb-gsl](https://github.com/sciruby/rb-gsl).
88

9-
Statsample also works with [rb-gsl](https://github.com/blackwinter/rb-gsl), though installing that will cause a problem if you have any nmatrix dependent code because narray and nmatrix have a namespace problem.
10-
11-
To install dependencies, execute the following commands:
12-
13-
`export CPLUS_INCLUDE_PATH=/usr/include/atlas`
14-
`export C_INCLUDE_PATH=/usr/include/atlas`
15-
`sudo apt-get update -qq`
16-
`sudo apt-get install -qq libatlas-base-dev`
17-
`sudo apt-get --purge remove liblapack-dev liblapack3 liblapack3gf`
18-
`sudo apt-get install -y libgsl0-dev r-base r-base-dev`
19-
`sudo Rscript -e "install.packages(c('Rserve','irr'),,'http://cran.us.r-project.org')"`
20-
21-
Then execute the .build.sh script to clone and install the latest nmatrix and gsl-nmatrix on your system:
22-
23-
`./.build.sh`
24-
25-
Then finally install remaining dependencies:
9+
Install dependencies:
2610

2711
`bundle install`
2812

History.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
=== 2.0.2 / 2016-03-11
2+
* Update dependencies.
3+
14
=== 2.0.1 / 2015-08-19
25
* Cleaned legacy containers in favor of `Daru::DataFrame` and `Daru::Vector`.
36

lib/statsample/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Statsample
2-
VERSION = '2.0.1'
2+
VERSION = '2.0.2'
33
end

statsample.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Gem::Specification.new do |s|
6161
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
6262

6363
s.add_runtime_dependency 'daru', '~> 0.1'
64-
s.add_runtime_dependency 'spreadsheet', '~> 1.0.3'
64+
s.add_runtime_dependency 'spreadsheet', '~> 1.1'
6565
s.add_runtime_dependency 'reportbuilder', '~> 1.4'
6666
s.add_runtime_dependency 'minimization', '~> 0.2'
6767
s.add_runtime_dependency 'dirty-memoize', '~> 0.0.4'
@@ -79,6 +79,6 @@ Gem::Specification.new do |s|
7979
s.add_development_dependency 'minitest', '~> 5.7'
8080
s.add_development_dependency 'gettext', '~> 3.1'
8181
s.add_development_dependency 'mocha', '~> 1.1'
82-
s.add_development_dependency 'nmatrix', '~> 0.1.0'
82+
s.add_development_dependency 'nmatrix', '~> 0.2.1'
8383
s.add_development_dependency 'rb-gsl', '~> 1.16'
8484
end

0 commit comments

Comments
 (0)