xgb 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d2c81d34117047b3f578ab36edaff55110a4f9df891ca12c79a3a742f9e9ec5
4
- data.tar.gz: 8f72f0d0d8dd0ad9e84dbe5a11e862523736538b279f95f4563b36d4904bc3a0
3
+ metadata.gz: 67bdefe6f47f083a24181d6bd90a6251cb9547b0a7af8ca20a359db45b3375cb
4
+ data.tar.gz: 52bd3ee13fb2f96f37b29723619766d4f3b17262e047b85a890e10f7178963d9
5
5
  SHA512:
6
- metadata.gz: 2829ba4355900c632bb6c1ceba971222d25712e2e1a74bee85790710c8725dfc718d65c59ac9d42f39e2e2d06c762339bd7676b4d136a7114727da2d1643ddf6
7
- data.tar.gz: 1e0901dcda3de2cf5aac969b20d89ba250e60bc9c72e273ccdfa4efaa9741ebbe69fec7903aa3e7a2ffe737e74285d417dbe452f90d1da3919ec5be79c7e0b53
6
+ metadata.gz: f1594baaa1c93dfa01089a6506bafef23cf4e51793b2c53592657d05fa1df7c8c376a39c76c6e4aa4ab29e12ff348b252b6c0cfa03acde76efa2e8d32d7ef562
7
+ data.tar.gz: 23e7ca079e0df452d013832e15e80a5fa5edd5754ed80a1e16ae40b681ddc985277d2775b7e84ad086eaa92591a078aa64e9765a32254538861308a97f5ea3a2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.7.1 (2022-10-31)
2
+
3
+ - Updated XGBoost to 1.7.0
4
+
1
5
  ## 0.7.0 (2022-06-05)
2
6
 
3
7
  - Updated XGBoost to 1.6.1
@@ -1,3 +1,3 @@
1
1
  module XGBoost
2
- VERSION = "0.7.0"
2
+ VERSION = "0.7.1"
3
3
  end
data/lib/xgboost.rb CHANGED
@@ -21,10 +21,10 @@ module XGBoost
21
21
  end
22
22
  lib_path =
23
23
  if Gem.win_platform?
24
- "x86_64-windows/xgboost.dll"
24
+ "x64-mingw/xgboost.dll"
25
25
  elsif RbConfig::CONFIG["host_os"] =~ /darwin/i
26
26
  if RbConfig::CONFIG["host_cpu"] =~ /arm|aarch64/i
27
- "aarch64-darwin/libxgboost.dylib"
27
+ "arm64-darwin/libxgboost.dylib"
28
28
  else
29
29
  "x86_64-darwin/libxgboost.dylib"
30
30
  end
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xgb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-06 00:00:00.000000000 Z
11
+ date: 2022-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -45,14 +45,18 @@ files:
45
45
  - lib/xgboost/regressor.rb
46
46
  - lib/xgboost/utils.rb
47
47
  - lib/xgboost/version.rb
48
- - vendor/aarch64-darwin/LICENSE-dmlc-core.txt
49
- - vendor/aarch64-darwin/LICENSE-rabit.txt
50
- - vendor/aarch64-darwin/LICENSE-xgboost.txt
51
- - vendor/aarch64-darwin/libxgboost.dylib
52
48
  - vendor/aarch64-linux/LICENSE-dmlc-core.txt
53
49
  - vendor/aarch64-linux/LICENSE-rabit.txt
54
50
  - vendor/aarch64-linux/LICENSE-xgboost.txt
55
51
  - vendor/aarch64-linux/libxgboost.so
52
+ - vendor/arm64-darwin/LICENSE-dmlc-core.txt
53
+ - vendor/arm64-darwin/LICENSE-rabit.txt
54
+ - vendor/arm64-darwin/LICENSE-xgboost.txt
55
+ - vendor/arm64-darwin/libxgboost.dylib
56
+ - vendor/x64-mingw/LICENSE-dmlc-core.txt
57
+ - vendor/x64-mingw/LICENSE-rabit.txt
58
+ - vendor/x64-mingw/LICENSE-xgboost.txt
59
+ - vendor/x64-mingw/xgboost.dll
56
60
  - vendor/x86_64-darwin/LICENSE-dmlc-core.txt
57
61
  - vendor/x86_64-darwin/LICENSE-rabit.txt
58
62
  - vendor/x86_64-darwin/LICENSE-xgboost.txt
@@ -61,10 +65,6 @@ files:
61
65
  - vendor/x86_64-linux/LICENSE-rabit.txt
62
66
  - vendor/x86_64-linux/LICENSE-xgboost.txt
63
67
  - vendor/x86_64-linux/libxgboost.so
64
- - vendor/x86_64-windows/LICENSE-dmlc-core.txt
65
- - vendor/x86_64-windows/LICENSE-rabit.txt
66
- - vendor/x86_64-windows/LICENSE-xgboost.txt
67
- - vendor/x86_64-windows/xgboost.dll
68
68
  homepage: https://github.com/ruby-ml/xgboost-ruby
69
69
  licenses:
70
70
  - Apache-2.0
Binary file
Binary file