numo-libsvm 3.1.0 → 3.2.0

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
  SHA256:
3
- metadata.gz: ce0bba312502df8987fce7634e8afe803f4106d2c09b7466d137eba81b9d1b07
4
- data.tar.gz: 9f0563c66133a1b9d41cc69e8bc06727abb2fed4bf7399341d85d11ba241c823
3
+ metadata.gz: b3df079b653edcc953f0b113bba347f9269f256a2cec49d686969e5720fd197a
4
+ data.tar.gz: 5658a7eb04c778cb2d569344356d3883d7c3b805fcf4221eddb4ef6d76195f7c
5
5
  SHA512:
6
- metadata.gz: b68f8597e7b250e6c8a6ecb0c8fd77a93653c398cfc0dfc63612cd3feab05ce8346298ff2b5a78681d41d7a318bfac2d7e319b72d7f7864d799299364a78285e
7
- data.tar.gz: 5422108c274aaf37be9e880b5f2ad4192b38f70e5c61653a24b83a55416928cf178ed9844c4c2d48a8bc18487f08981015a3cdae15d2ae482a9fc32cea94b403
6
+ metadata.gz: cbebfdda4c25a101020c90a83c6cd66834feb334d0c712bc319688996d55b3a72dc9bf8be8d63dc89cd2043f062f7f9fb8fcd453f25bea133af78fa950edf77e
7
+ data.tar.gz: ec79993a2c85b9d7a98b8b645e262a3fe4720891415f1b46237d60dd4e71e784e8f818d009ff9aa667488c94bd64b69df1732416cc3bb14a1e00740276cd020d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,14 @@
1
+ # [[3.2.0](https://github.com/yoshoku/numo-libsvm/compare/v3.1.1...v3.2.0)] - 2026-07-05
2
+
3
+ - Relax numo-narray-alt upper bound to < 0.12.0.
4
+
5
+ # [[3.1.1](https://github.com/yoshoku/numo-libsvm/compare/v3.1.0...v3.1.1)] - 2026-02-17
6
+
7
+ - Remove unnecessary C++ shared library loading check from native extensions build step.
8
+
1
9
  # [[3.1.0](https://github.com/yoshoku/numo-libsvm/compare/v3.0.1...v3.1.0)] - 2026-02-06
2
10
 
3
- - relax numo-narray-alt version constraint to >= 0.9.10, < 0.11.0.
11
+ - Relax numo-narray-alt version constraint to >= 0.9.10, < 0.11.0.
4
12
 
5
13
  # [[3.0.1](https://github.com/yoshoku/numo-libsvm/compare/v3.0.0...v3.0.1)] - 2025-11-19
6
14
 
@@ -9,7 +17,7 @@
9
17
 
10
18
  # [[3.0.0](https://github.com/yoshoku/numo-libsvm/compare/v2.3.0...v3.0.0)] - 2025-10-01
11
19
 
12
- **Breaking chage**
20
+ **Breaking change**
13
21
 
14
22
  - Change dependency from numo-narray to [numo-narray-alt](https://github.com/yoshoku/numo-narray-alt).
15
23
 
@@ -26,19 +26,6 @@ if RUBY_PLATFORM.match?(/darwin/) && Gem::Version.new('3.1.0') <= Gem::Version.n
26
26
  end
27
27
  end
28
28
 
29
- have_libcpp = false
30
- if RUBY_PLATFORM.include?('darwin')
31
- if have_library('c++')
32
- have_libcpp = true
33
- else
34
- warn 'libc++ is not found.'
35
- end
36
- end
37
-
38
- if !have_libcpp && !RUBY_PLATFORM.include?('mswin')
39
- warn 'libstdc++ is not found.' unless have_library('stdc++')
40
- end
41
-
42
29
  $srcs = Dir.glob("#{$srcdir}/**/*.cpp").map { |path| File.basename(path) }
43
30
  $INCFLAGS << " -I$(srcdir)/src"
44
31
  $VPATH << "$(srcdir)/src"
@@ -3,6 +3,6 @@
3
3
  module Numo
4
4
  module Libsvm
5
5
  # The version of Numo::Libsvm you are using.
6
- VERSION = '3.1.0'
6
+ VERSION = '3.2.0'
7
7
  end
8
8
  end
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.1.0
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: 0.9.10
19
19
  - - "<"
20
20
  - !ruby/object:Gem::Version
21
- version: 0.11.0
21
+ version: 0.12.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: 0.9.10
29
29
  - - "<"
30
30
  - !ruby/object:Gem::Version
31
- version: 0.11.0
31
+ version: 0.12.0
32
32
  description: |
33
33
  Numo::Libsvm is a Ruby gem binding to the LIBSVM library.
34
34
  LIBSVM is one of the famous libraries that implemented Support Vector Machines,
@@ -60,7 +60,7 @@ metadata:
60
60
  homepage_uri: https://github.com/yoshoku/numo-libsvm
61
61
  source_code_uri: https://github.com/yoshoku/numo-libsvm
62
62
  changelog_uri: https://github.com/yoshoku/numo-libsvm/blob/main/CHANGELOG.md
63
- documentation_uri: https://gemdocs.org/gems/numo-libsvm/3.1.0/
63
+ documentation_uri: https://gemdocs.org/gems/numo-libsvm/3.2.0/
64
64
  rubygems_mfa_required: 'true'
65
65
  rdoc_options: []
66
66
  require_paths:
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
76
  - !ruby/object:Gem::Version
77
77
  version: '0'
78
78
  requirements: []
79
- rubygems_version: 4.0.3
79
+ rubygems_version: 4.0.13
80
80
  specification_version: 4
81
81
  summary: Numo::Libsvm is a Ruby gem binding to the LIBSVM library. Numo::Libsvm makes
82
82
  to use the LIBSVM functions with dataset represented by Numo::NArray.