rumale 0.12.6 → 0.12.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f5ad94467c9d031744ab3cc7e0c29439a23ce562
4
- data.tar.gz: 6b99e9c5846acef596ee6efef32fc355df73f856
3
+ metadata.gz: e59e9e95af6dcb6dbca000120e29d317f55cc15e
4
+ data.tar.gz: b4779b41ce2ed7308d447b1a7757f9f5a016b433
5
5
  SHA512:
6
- metadata.gz: b962432af5544227a33dce685f002807855bb51559fbe874414e26f3b13df031886bf294769282b3971eee75d4ad6941a630b8a9b81a591975ad7977fc111e43
7
- data.tar.gz: e2c5e90412c9dfb1cb2ab6cf9f46593a93902807cbffe5b3fff43074074d3cc77ce9a03d9be8dd7c2e447579fb231c0548f57796ee04b189758e8890cc8e2a8f
6
+ metadata.gz: 2a3def8c19142e39c30b47907af5fb539d5cce56ded3f30e51002a1a6bb84d8e77133bc19b1f51a6681a1744fda60468ca919f50289d0585bbb643caa4236de1
7
+ data.tar.gz: 3fcfd001fbfdac7c885f26b30714417ca0d17189e0ef1e5d80b64e39043d8b841e4d1610399993da5875792ebdd3edb999a390d982dfab2adcc9b1ee109972d1
@@ -1,3 +1,6 @@
1
+ # 0.12.7
2
+ - Fix bug that fails to build and install on Windows.
3
+
1
4
  # 0.12.6
2
5
  - Fix extension codes of decision tree classifier and gradient tree regressor for using Numo::NArray.
3
6
 
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  [![Coverage Status](https://coveralls.io/repos/github/yoshoku/rumale/badge.svg?branch=master)](https://coveralls.io/github/yoshoku/rumale?branch=master)
7
7
  [![Gem Version](https://badge.fury.io/rb/rumale.svg)](https://badge.fury.io/rb/rumale)
8
8
  [![BSD 2-Clause License](https://img.shields.io/badge/License-BSD%202--Clause-orange.svg)](https://github.com/yoshoku/rumale/blob/master/LICENSE.txt)
9
- [![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](https://www.rubydoc.info/gems/rumale/0.12.6)
9
+ [![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](https://www.rubydoc.info/gems/rumale/0.12.7)
10
10
 
11
11
  Rumale (**Ru**by **ma**chine **le**arning) is a machine learning library in Ruby.
12
12
  Rumale provides machine learning algorithms with interfaces similar to Scikit-Learn in Python.
@@ -10,4 +10,13 @@ $LOAD_PATH.each do |lp|
10
10
  end
11
11
  end
12
12
 
13
+ if RUBY_PLATFORM =~ /mswin|cygwin|mingw/
14
+ $LOAD_PATH.each do |lp|
15
+ if File.exist? File.join(lp, 'numo/libnarray.a')
16
+ $LDFLAGS = "-L#{lp}/numo #{$LDFLAGS}"
17
+ break
18
+ end
19
+ end
20
+ end
21
+
13
22
  create_makefile('rumale/rumale')
@@ -3,5 +3,5 @@
3
3
  # Rumale is a machine learning library in Ruby.
4
4
  module Rumale
5
5
  # The version of Rumale you are using.
6
- VERSION = '0.12.6'
6
+ VERSION = '0.12.7'
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rumale
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.6
4
+ version: 0.12.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-07-13 00:00:00.000000000 Z
11
+ date: 2019-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: numo-narray