numo-libsvm 3.0.0 → 3.0.1
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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +1 -1
- data/ext/numo/libsvm/extconf.rb +3 -3
- data/lib/numo/libsvm/version.rb +1 -1
- data/lib/numo/libsvm.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a84d5ffa9bbbccb512409634d9febefbafec59c4ba9bc85c1d710739164358b1
|
|
4
|
+
data.tar.gz: 2a75ff30676dc0cee9622b552ba2097dc45eb2db2781f7048d56d02a5ddff75f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7e5dbd2dc27274d2c9d224cf4a3c0ddd869260b2d6056b47249ea85effdbaa6dfe83be1cf186e0afe363ec2d21616f7d29061c36fc80477b232654f3b729adb
|
|
7
|
+
data.tar.gz: 7614c1a72d88a5ed93ae201aaecfe50293b22e197ebfc1d5dc6d3b230f581ed379a44325e3ddd94e02b4fe22150315bf6371713b391ac618582d7ceaf91c56d3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
# [[3.0.1](https://github.com/yoshoku/numo-libsvm/compare/v3.0.0...v3.0.1)] - 2025-11-19
|
|
2
|
+
|
|
3
|
+
- Set the required version of numo-narray-alt to 0.9.10 or higher.
|
|
4
|
+
- Change require statement to explicitly load numo/narray/alt.
|
|
5
|
+
|
|
1
6
|
# [[3.0.0](https://github.com/yoshoku/numo-libsvm/compare/v2.3.0...v3.0.0)] - 2025-10-01
|
|
2
7
|
|
|
3
8
|
**Breaking chage**
|
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://github.com/yoshoku/numo-libsvm/actions?query=workflow%3Abuild)
|
|
4
4
|
[](https://badge.fury.io/rb/numo-libsvm)
|
|
5
5
|
[](https://github.com/yoshoku/numo-libsvm/blob/main/LICENSE.txt)
|
|
6
|
-
[](https://
|
|
6
|
+
[](https://gemdocs.org/gems/numo-libsvm/)
|
|
7
7
|
|
|
8
8
|
Numo::Libsvm is a Ruby gem binding to the [LIBSVM](https://github.com/cjlin1/libsvm) library.
|
|
9
9
|
LIBSVM is one of the famous libraries that implemented Support Vector Machines,
|
data/ext/numo/libsvm/extconf.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
require 'mkmf'
|
|
2
|
-
require 'numo/narray'
|
|
2
|
+
require 'numo/narray/alt'
|
|
3
3
|
|
|
4
4
|
$LOAD_PATH.each do |lp|
|
|
5
5
|
if File.exist?(File.join(lp, 'numo/numo/narray.h'))
|
|
@@ -12,8 +12,8 @@ abort 'numo/narray.h not found.' unless have_header('numo/narray.h')
|
|
|
12
12
|
|
|
13
13
|
if RUBY_PLATFORM =~ /mswin|cygwin|mingw/
|
|
14
14
|
$LOAD_PATH.each do |lp|
|
|
15
|
-
if File.exist?(File.join(lp, 'numo/libnarray.a'))
|
|
16
|
-
$LDFLAGS = "-L#{lp}/numo #{$LDFLAGS}"
|
|
15
|
+
if File.exist?(File.join(lp, 'numo/narray/libnarray.a'))
|
|
16
|
+
$LDFLAGS = "-L#{lp}/numo/narray #{$LDFLAGS}"
|
|
17
17
|
break
|
|
18
18
|
end
|
|
19
19
|
end
|
data/lib/numo/libsvm/version.rb
CHANGED
data/lib/numo/libsvm.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: numo-libsvm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yoshoku
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.9.
|
|
18
|
+
version: 0.9.10
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 0.9.
|
|
25
|
+
version: 0.9.10
|
|
26
26
|
description: |
|
|
27
27
|
Numo::Libsvm is a Ruby gem binding to the LIBSVM library.
|
|
28
28
|
LIBSVM is one of the famous libraries that implemented Support Vector Machines,
|
|
@@ -54,7 +54,7 @@ metadata:
|
|
|
54
54
|
homepage_uri: https://github.com/yoshoku/numo-libsvm
|
|
55
55
|
source_code_uri: https://github.com/yoshoku/numo-libsvm
|
|
56
56
|
changelog_uri: https://github.com/yoshoku/numo-libsvm/blob/main/CHANGELOG.md
|
|
57
|
-
documentation_uri: https://gemdocs.org/gems/numo-libsvm/3.0.
|
|
57
|
+
documentation_uri: https://gemdocs.org/gems/numo-libsvm/3.0.1/
|
|
58
58
|
rubygems_mfa_required: 'true'
|
|
59
59
|
rdoc_options: []
|
|
60
60
|
require_paths:
|
|
@@ -70,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
70
70
|
- !ruby/object:Gem::Version
|
|
71
71
|
version: '0'
|
|
72
72
|
requirements: []
|
|
73
|
-
rubygems_version: 3.
|
|
73
|
+
rubygems_version: 3.7.2
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Numo::Libsvm is a Ruby gem binding to the LIBSVM library. Numo::Libsvm makes
|
|
76
76
|
to use the LIBSVM functions with dataset represented by Numo::NArray.
|