interpn 0.2.2__tar.gz → 0.2.3__tar.gz

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.
Files changed (45) hide show
  1. {interpn-0.2.2 → interpn-0.2.3}/CHANGELOG.md +6 -0
  2. {interpn-0.2.2 → interpn-0.2.3}/Cargo.lock +66 -60
  3. {interpn-0.2.2 → interpn-0.2.3}/Cargo.toml +2 -2
  4. {interpn-0.2.2 → interpn-0.2.3}/PKG-INFO +1 -1
  5. {interpn-0.2.2 → interpn-0.2.3}/pyproject.toml +1 -1
  6. {interpn-0.2.2 → interpn-0.2.3}/.github/workflows/CI.yml +0 -0
  7. {interpn-0.2.2 → interpn-0.2.3}/.github/workflows/test.yml +0 -0
  8. {interpn-0.2.2 → interpn-0.2.3}/.gitignore +0 -0
  9. {interpn-0.2.2 → interpn-0.2.3}/.readthedocs.yml +0 -0
  10. {interpn-0.2.2 → interpn-0.2.3}/LICENSE-APACHE +0 -0
  11. {interpn-0.2.2 → interpn-0.2.3}/LICENSE-MIT +0 -0
  12. {interpn-0.2.2 → interpn-0.2.3}/README.md +0 -0
  13. {interpn-0.2.2 → interpn-0.2.3}/docs/1d_quality_of_fit_Rectilinear.svg +0 -0
  14. {interpn-0.2.2 → interpn-0.2.3}/docs/1d_quality_of_fit_Regular.svg +0 -0
  15. {interpn-0.2.2 → interpn-0.2.3}/docs/2d_quality_of_fit_Rectilinear.svg +0 -0
  16. {interpn-0.2.2 → interpn-0.2.3}/docs/2d_quality_of_fit_Regular.svg +0 -0
  17. {interpn-0.2.2 → interpn-0.2.3}/docs/3d_throughput_vs_nobs.svg +0 -0
  18. {interpn-0.2.2 → interpn-0.2.3}/docs/3d_throughput_vs_nobs_prealloc.svg +0 -0
  19. {interpn-0.2.2 → interpn-0.2.3}/docs/6d_throughput_vs_nobs.svg +0 -0
  20. {interpn-0.2.2 → interpn-0.2.3}/docs/6d_throughput_vs_nobs_prealloc.svg +0 -0
  21. {interpn-0.2.2 → interpn-0.2.3}/docs/API_Docs.md +0 -0
  22. {interpn-0.2.2 → interpn-0.2.3}/docs/index.md +0 -0
  23. {interpn-0.2.2 → interpn-0.2.3}/docs/perf.md +0 -0
  24. {interpn-0.2.2 → interpn-0.2.3}/docs/ram_vs_dims.svg +0 -0
  25. {interpn-0.2.2 → interpn-0.2.3}/docs/requirements.txt +0 -0
  26. {interpn-0.2.2 → interpn-0.2.3}/docs/throughput_vs_dims_1000_obs.svg +0 -0
  27. {interpn-0.2.2 → interpn-0.2.3}/docs/throughput_vs_dims_1_obs.svg +0 -0
  28. {interpn-0.2.2 → interpn-0.2.3}/examples/cubic_comparison.py +0 -0
  29. {interpn-0.2.2 → interpn-0.2.3}/interpn/__init__.py +0 -0
  30. {interpn-0.2.2 → interpn-0.2.3}/interpn/multicubic_rectilinear.py +0 -0
  31. {interpn-0.2.2 → interpn-0.2.3}/interpn/multicubic_regular.py +0 -0
  32. {interpn-0.2.2 → interpn-0.2.3}/interpn/multilinear_rectilinear.py +0 -0
  33. {interpn-0.2.2 → interpn-0.2.3}/interpn/multilinear_regular.py +0 -0
  34. {interpn-0.2.2 → interpn-0.2.3}/interpn/py.typed +0 -0
  35. {interpn-0.2.2 → interpn-0.2.3}/interpn/raw.py +0 -0
  36. {interpn-0.2.2 → interpn-0.2.3}/interpn/serialization.py +0 -0
  37. {interpn-0.2.2 → interpn-0.2.3}/mkdocs.yml +0 -0
  38. {interpn-0.2.2 → interpn-0.2.3}/src/lib.rs +0 -0
  39. {interpn-0.2.2 → interpn-0.2.3}/test/bench_cpu.py +0 -0
  40. {interpn-0.2.2 → interpn-0.2.3}/test/bench_mem.py +0 -0
  41. {interpn-0.2.2 → interpn-0.2.3}/test/test_docs.py +0 -0
  42. {interpn-0.2.2 → interpn-0.2.3}/test/test_multicubic_rectilinear.py +0 -0
  43. {interpn-0.2.2 → interpn-0.2.3}/test/test_multicubic_regular.py +0 -0
  44. {interpn-0.2.2 → interpn-0.2.3}/test/test_multilinear_rectilinear.py +0 -0
  45. {interpn-0.2.2 → interpn-0.2.3}/test/test_multilinear_regular.py +0 -0
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.3 2024-08-20
4
+
5
+ ### Changed
6
+
7
+ * Update interpn rust dep to 0.4.3 to capture upgraded linear methods
8
+
3
9
  ## 0.2.2 2024-07-08
4
10
 
5
11
  ### Changed
@@ -4,7 +4,7 @@ version = 3
4
4
 
5
5
  [[package]]
6
6
  name = "_interpn"
7
- version = "0.1.3"
7
+ version = "0.1.4"
8
8
  dependencies = [
9
9
  "interpn",
10
10
  "numpy",
@@ -13,15 +13,15 @@ dependencies = [
13
13
 
14
14
  [[package]]
15
15
  name = "autocfg"
16
- version = "1.1.0"
16
+ version = "1.3.0"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
18
+ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
19
19
 
20
20
  [[package]]
21
21
  name = "bitflags"
22
- version = "1.3.2"
22
+ version = "2.6.0"
23
23
  source = "registry+https://github.com/rust-lang/crates.io-index"
24
- checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
24
+ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
25
25
 
26
26
  [[package]]
27
27
  name = "cfg-if"
@@ -37,24 +37,24 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
37
37
 
38
38
  [[package]]
39
39
  name = "indoc"
40
- version = "2.0.4"
40
+ version = "2.0.5"
41
41
  source = "registry+https://github.com/rust-lang/crates.io-index"
42
- checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
42
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
43
43
 
44
44
  [[package]]
45
45
  name = "interpn"
46
- version = "0.4.2"
46
+ version = "0.4.3"
47
47
  source = "registry+https://github.com/rust-lang/crates.io-index"
48
- checksum = "f37cc48f61030a3bed5eb01e583af8ae1248f3e3bf63d05d87a18f27a98a426b"
48
+ checksum = "e75d8992f13845dc723c9a4cf8b40915579e4a6744e12a6df8372cf5ce5b0084"
49
49
  dependencies = [
50
50
  "num-traits",
51
51
  ]
52
52
 
53
53
  [[package]]
54
54
  name = "libc"
55
- version = "0.2.150"
55
+ version = "0.2.158"
56
56
  source = "registry+https://github.com/rust-lang/crates.io-index"
57
- checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
57
+ checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
58
58
 
59
59
  [[package]]
60
60
  name = "libm"
@@ -64,9 +64,9 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
64
64
 
65
65
  [[package]]
66
66
  name = "lock_api"
67
- version = "0.4.11"
67
+ version = "0.4.12"
68
68
  source = "registry+https://github.com/rust-lang/crates.io-index"
69
- checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
69
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
70
70
  dependencies = [
71
71
  "autocfg",
72
72
  "scopeguard",
@@ -74,9 +74,9 @@ dependencies = [
74
74
 
75
75
  [[package]]
76
76
  name = "matrixmultiply"
77
- version = "0.3.8"
77
+ version = "0.3.9"
78
78
  source = "registry+https://github.com/rust-lang/crates.io-index"
79
- checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
79
+ checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a"
80
80
  dependencies = [
81
81
  "autocfg",
82
82
  "rawpointer",
@@ -84,9 +84,9 @@ dependencies = [
84
84
 
85
85
  [[package]]
86
86
  name = "memoffset"
87
- version = "0.9.0"
87
+ version = "0.9.1"
88
88
  source = "registry+https://github.com/rust-lang/crates.io-index"
89
- checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
89
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
90
90
  dependencies = [
91
91
  "autocfg",
92
92
  ]
@@ -106,28 +106,27 @@ dependencies = [
106
106
 
107
107
  [[package]]
108
108
  name = "num-complex"
109
- version = "0.4.4"
109
+ version = "0.4.6"
110
110
  source = "registry+https://github.com/rust-lang/crates.io-index"
111
- checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214"
111
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
112
112
  dependencies = [
113
113
  "num-traits",
114
114
  ]
115
115
 
116
116
  [[package]]
117
117
  name = "num-integer"
118
- version = "0.1.45"
118
+ version = "0.1.46"
119
119
  source = "registry+https://github.com/rust-lang/crates.io-index"
120
- checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
120
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
121
121
  dependencies = [
122
- "autocfg",
123
122
  "num-traits",
124
123
  ]
125
124
 
126
125
  [[package]]
127
126
  name = "num-traits"
128
- version = "0.2.17"
127
+ version = "0.2.19"
129
128
  source = "registry+https://github.com/rust-lang/crates.io-index"
130
- checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
129
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
131
130
  dependencies = [
132
131
  "autocfg",
133
132
  "libm",
@@ -150,15 +149,15 @@ dependencies = [
150
149
 
151
150
  [[package]]
152
151
  name = "once_cell"
153
- version = "1.18.0"
152
+ version = "1.19.0"
154
153
  source = "registry+https://github.com/rust-lang/crates.io-index"
155
- checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
154
+ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
156
155
 
157
156
  [[package]]
158
157
  name = "parking_lot"
159
- version = "0.12.1"
158
+ version = "0.12.3"
160
159
  source = "registry+https://github.com/rust-lang/crates.io-index"
161
- checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
160
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
162
161
  dependencies = [
163
162
  "lock_api",
164
163
  "parking_lot_core",
@@ -166,9 +165,9 @@ dependencies = [
166
165
 
167
166
  [[package]]
168
167
  name = "parking_lot_core"
169
- version = "0.9.9"
168
+ version = "0.9.10"
170
169
  source = "registry+https://github.com/rust-lang/crates.io-index"
171
- checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
170
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
172
171
  dependencies = [
173
172
  "cfg-if",
174
173
  "libc",
@@ -179,15 +178,15 @@ dependencies = [
179
178
 
180
179
  [[package]]
181
180
  name = "portable-atomic"
182
- version = "1.6.0"
181
+ version = "1.7.0"
183
182
  source = "registry+https://github.com/rust-lang/crates.io-index"
184
- checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
183
+ checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
185
184
 
186
185
  [[package]]
187
186
  name = "proc-macro2"
188
- version = "1.0.69"
187
+ version = "1.0.86"
189
188
  source = "registry+https://github.com/rust-lang/crates.io-index"
190
- checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
189
+ checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
191
190
  dependencies = [
192
191
  "unicode-ident",
193
192
  ]
@@ -257,9 +256,9 @@ dependencies = [
257
256
 
258
257
  [[package]]
259
258
  name = "quote"
260
- version = "1.0.33"
259
+ version = "1.0.36"
261
260
  source = "registry+https://github.com/rust-lang/crates.io-index"
262
- checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
261
+ checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
263
262
  dependencies = [
264
263
  "proc-macro2",
265
264
  ]
@@ -272,9 +271,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
272
271
 
273
272
  [[package]]
274
273
  name = "redox_syscall"
275
- version = "0.4.1"
274
+ version = "0.5.3"
276
275
  source = "registry+https://github.com/rust-lang/crates.io-index"
277
- checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
276
+ checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
278
277
  dependencies = [
279
278
  "bitflags",
280
279
  ]
@@ -293,15 +292,15 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
293
292
 
294
293
  [[package]]
295
294
  name = "smallvec"
296
- version = "1.11.2"
295
+ version = "1.13.2"
297
296
  source = "registry+https://github.com/rust-lang/crates.io-index"
298
- checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
297
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
299
298
 
300
299
  [[package]]
301
300
  name = "syn"
302
- version = "2.0.39"
301
+ version = "2.0.75"
303
302
  source = "registry+https://github.com/rust-lang/crates.io-index"
304
- checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
303
+ checksum = "f6af063034fc1935ede7be0122941bafa9bacb949334d090b77ca98b5817c7d9"
305
304
  dependencies = [
306
305
  "proc-macro2",
307
306
  "quote",
@@ -310,9 +309,9 @@ dependencies = [
310
309
 
311
310
  [[package]]
312
311
  name = "target-lexicon"
313
- version = "0.12.12"
312
+ version = "0.12.16"
314
313
  source = "registry+https://github.com/rust-lang/crates.io-index"
315
- checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a"
314
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
316
315
 
317
316
  [[package]]
318
317
  name = "unicode-ident"
@@ -328,13 +327,14 @@ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
328
327
 
329
328
  [[package]]
330
329
  name = "windows-targets"
331
- version = "0.48.5"
330
+ version = "0.52.6"
332
331
  source = "registry+https://github.com/rust-lang/crates.io-index"
333
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
332
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
334
333
  dependencies = [
335
334
  "windows_aarch64_gnullvm",
336
335
  "windows_aarch64_msvc",
337
336
  "windows_i686_gnu",
337
+ "windows_i686_gnullvm",
338
338
  "windows_i686_msvc",
339
339
  "windows_x86_64_gnu",
340
340
  "windows_x86_64_gnullvm",
@@ -343,42 +343,48 @@ dependencies = [
343
343
 
344
344
  [[package]]
345
345
  name = "windows_aarch64_gnullvm"
346
- version = "0.48.5"
346
+ version = "0.52.6"
347
347
  source = "registry+https://github.com/rust-lang/crates.io-index"
348
- checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
348
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
349
349
 
350
350
  [[package]]
351
351
  name = "windows_aarch64_msvc"
352
- version = "0.48.5"
352
+ version = "0.52.6"
353
353
  source = "registry+https://github.com/rust-lang/crates.io-index"
354
- checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
354
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
355
355
 
356
356
  [[package]]
357
357
  name = "windows_i686_gnu"
358
- version = "0.48.5"
358
+ version = "0.52.6"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
361
+
362
+ [[package]]
363
+ name = "windows_i686_gnullvm"
364
+ version = "0.52.6"
359
365
  source = "registry+https://github.com/rust-lang/crates.io-index"
360
- checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
366
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
361
367
 
362
368
  [[package]]
363
369
  name = "windows_i686_msvc"
364
- version = "0.48.5"
370
+ version = "0.52.6"
365
371
  source = "registry+https://github.com/rust-lang/crates.io-index"
366
- checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
372
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
367
373
 
368
374
  [[package]]
369
375
  name = "windows_x86_64_gnu"
370
- version = "0.48.5"
376
+ version = "0.52.6"
371
377
  source = "registry+https://github.com/rust-lang/crates.io-index"
372
- checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
378
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
373
379
 
374
380
  [[package]]
375
381
  name = "windows_x86_64_gnullvm"
376
- version = "0.48.5"
382
+ version = "0.52.6"
377
383
  source = "registry+https://github.com/rust-lang/crates.io-index"
378
- checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
384
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
379
385
 
380
386
  [[package]]
381
387
  name = "windows_x86_64_msvc"
382
- version = "0.48.5"
388
+ version = "0.52.6"
383
389
  source = "registry+https://github.com/rust-lang/crates.io-index"
384
- checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
390
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "_interpn"
3
- version = "0.1.3"
3
+ version = "0.1.4"
4
4
  edition = "2021"
5
5
 
6
6
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
11
11
  [dependencies]
12
12
  pyo3 = "^0.21.0"
13
13
  numpy = "^0.21.0"
14
- interpn = {version = "0.4.2", default_features = false}
14
+ interpn = {version = "0.4.3", default_features = false}
15
15
  #interpn = { path = "../interpn/interpn" }
16
16
 
17
17
  [profile.release]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: interpn
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -4,7 +4,7 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "interpn"
7
- version = "0.2.2"
7
+ version = "0.2.3"
8
8
  repository = "https://github.com/jlogan03/interpnpy"
9
9
  documentation = "https://interpn.readthedocs.io/"
10
10
  description = "N-dimensional interpolation/extrapolation methods"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes