interpn 0.2.3__tar.gz → 0.2.4__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 (48) hide show
  1. interpn-0.2.4/.cargo/config.toml +3 -0
  2. interpn-0.2.4/.github/workflows/CI.yml +174 -0
  3. {interpn-0.2.3 → interpn-0.2.4}/.github/workflows/test.yml +2 -2
  4. interpn-0.2.4/CHANGELOG.md +27 -0
  5. {interpn-0.2.3 → interpn-0.2.4}/Cargo.lock +24 -147
  6. {interpn-0.2.3 → interpn-0.2.4}/Cargo.toml +4 -4
  7. {interpn-0.2.3 → interpn-0.2.4}/PKG-INFO +19 -19
  8. {interpn-0.2.3 → interpn-0.2.4}/docs/3d_throughput_vs_nobs.svg +361 -391
  9. {interpn-0.2.3 → interpn-0.2.4}/docs/3d_throughput_vs_nobs_prealloc.svg +363 -393
  10. {interpn-0.2.3 → interpn-0.2.4}/docs/6d_throughput_vs_nobs.svg +402 -393
  11. {interpn-0.2.3 → interpn-0.2.4}/docs/6d_throughput_vs_nobs_prealloc.svg +404 -395
  12. interpn-0.2.3/docs/throughput_vs_dims_1_obs.svg → interpn-0.2.4/docs/throughput_vs_dims_1000_obs.svg +337 -437
  13. interpn-0.2.3/docs/throughput_vs_dims_1000_obs.svg → interpn-0.2.4/docs/throughput_vs_dims_1_obs.svg +355 -787
  14. {interpn-0.2.3 → interpn-0.2.4}/pyproject.toml +3 -4
  15. {interpn-0.2.3 → interpn-0.2.4}/src/lib.rs +33 -33
  16. {interpn-0.2.3 → interpn-0.2.4}/test/bench_cpu.py +1 -1
  17. interpn-0.2.3/.github/workflows/CI.yml +0 -127
  18. interpn-0.2.3/CHANGELOG.md +0 -15
  19. {interpn-0.2.3 → interpn-0.2.4}/.gitignore +0 -0
  20. {interpn-0.2.3 → interpn-0.2.4}/.readthedocs.yml +0 -0
  21. {interpn-0.2.3 → interpn-0.2.4}/LICENSE-APACHE +0 -0
  22. {interpn-0.2.3 → interpn-0.2.4}/LICENSE-MIT +0 -0
  23. {interpn-0.2.3 → interpn-0.2.4}/README.md +0 -0
  24. {interpn-0.2.3 → interpn-0.2.4}/docs/1d_quality_of_fit_Rectilinear.svg +0 -0
  25. {interpn-0.2.3 → interpn-0.2.4}/docs/1d_quality_of_fit_Regular.svg +0 -0
  26. {interpn-0.2.3 → interpn-0.2.4}/docs/2d_quality_of_fit_Rectilinear.svg +0 -0
  27. {interpn-0.2.3 → interpn-0.2.4}/docs/2d_quality_of_fit_Regular.svg +0 -0
  28. {interpn-0.2.3 → interpn-0.2.4}/docs/API_Docs.md +0 -0
  29. {interpn-0.2.3 → interpn-0.2.4}/docs/index.md +0 -0
  30. {interpn-0.2.3 → interpn-0.2.4}/docs/perf.md +0 -0
  31. {interpn-0.2.3 → interpn-0.2.4}/docs/ram_vs_dims.svg +0 -0
  32. {interpn-0.2.3 → interpn-0.2.4}/docs/requirements.txt +0 -0
  33. {interpn-0.2.3 → interpn-0.2.4}/examples/cubic_comparison.py +0 -0
  34. {interpn-0.2.3 → interpn-0.2.4}/interpn/__init__.py +0 -0
  35. {interpn-0.2.3 → interpn-0.2.4}/interpn/multicubic_rectilinear.py +0 -0
  36. {interpn-0.2.3 → interpn-0.2.4}/interpn/multicubic_regular.py +0 -0
  37. {interpn-0.2.3 → interpn-0.2.4}/interpn/multilinear_rectilinear.py +0 -0
  38. {interpn-0.2.3 → interpn-0.2.4}/interpn/multilinear_regular.py +0 -0
  39. {interpn-0.2.3 → interpn-0.2.4}/interpn/py.typed +0 -0
  40. {interpn-0.2.3 → interpn-0.2.4}/interpn/raw.py +0 -0
  41. {interpn-0.2.3 → interpn-0.2.4}/interpn/serialization.py +0 -0
  42. {interpn-0.2.3 → interpn-0.2.4}/mkdocs.yml +0 -0
  43. {interpn-0.2.3 → interpn-0.2.4}/test/bench_mem.py +0 -0
  44. {interpn-0.2.3 → interpn-0.2.4}/test/test_docs.py +0 -0
  45. {interpn-0.2.3 → interpn-0.2.4}/test/test_multicubic_rectilinear.py +0 -0
  46. {interpn-0.2.3 → interpn-0.2.4}/test/test_multicubic_regular.py +0 -0
  47. {interpn-0.2.3 → interpn-0.2.4}/test/test_multilinear_rectilinear.py +0 -0
  48. {interpn-0.2.3 → interpn-0.2.4}/test/test_multilinear_regular.py +0 -0
@@ -0,0 +1,3 @@
1
+ [target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))']
2
+ rustflags = ["-C", "target-feature=+fma"]
3
+
@@ -0,0 +1,174 @@
1
+ # This file is autogenerated by maturin v1.8.3
2
+ # To update, run
3
+ #
4
+ # maturin generate-ci github
5
+ #
6
+ name: CI
7
+
8
+ on:
9
+ push:
10
+ branches:
11
+ - main
12
+ workflow_dispatch:
13
+
14
+ permissions:
15
+ contents: read
16
+
17
+ jobs:
18
+ linux:
19
+ runs-on: ${{ matrix.platform.runner }}
20
+ strategy:
21
+ matrix:
22
+ platform:
23
+ - runner: ubuntu-22.04
24
+ target: x86_64
25
+ - runner: ubuntu-22.04
26
+ target: x86
27
+ - runner: ubuntu-22.04
28
+ target: aarch64
29
+ - runner: ubuntu-22.04
30
+ target: armv7
31
+ - runner: ubuntu-22.04
32
+ target: s390x
33
+ - runner: ubuntu-22.04
34
+ target: ppc64le
35
+ python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
36
+ steps:
37
+ - uses: actions/checkout@v4
38
+ - uses: actions/setup-python@v5
39
+ - name: Build wheels
40
+ uses: PyO3/maturin-action@v1
41
+ with:
42
+ target: ${{ matrix.platform.target }}
43
+ args: --release --out dist --find-interpreter
44
+ # sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
45
+ manylinux: auto
46
+ - name: Upload wheels
47
+ uses: actions/upload-artifact@v4
48
+ with:
49
+ name: wheels-linux-${{ matrix.platform.target }}-${{ matrix.python-version }}
50
+ path: dist
51
+
52
+ musllinux:
53
+ runs-on: ${{ matrix.platform.runner }}
54
+ strategy:
55
+ matrix:
56
+ platform:
57
+ - runner: ubuntu-22.04
58
+ target: x86_64
59
+ - runner: ubuntu-22.04
60
+ target: x86
61
+ - runner: ubuntu-22.04
62
+ target: aarch64
63
+ - runner: ubuntu-22.04
64
+ target: armv7
65
+ python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
66
+ steps:
67
+ - uses: actions/checkout@v4
68
+ - uses: actions/setup-python@v5
69
+ - name: Build wheels
70
+ uses: PyO3/maturin-action@v1
71
+ with:
72
+ target: ${{ matrix.platform.target }}
73
+ args: --release --out dist --find-interpreter
74
+ # sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
75
+ manylinux: musllinux_1_2
76
+ - name: Upload wheels
77
+ uses: actions/upload-artifact@v4
78
+ with:
79
+ name: wheels-musllinux-${{ matrix.platform.target }}-${{ matrix.python-version }}
80
+ path: dist
81
+
82
+ windows:
83
+ runs-on: ${{ matrix.platform.runner }}
84
+ strategy:
85
+ matrix:
86
+ platform:
87
+ - runner: windows-latest
88
+ target: x64
89
+ - runner: windows-latest
90
+ target: x86
91
+ python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
92
+ steps:
93
+ - uses: actions/checkout@v4
94
+ - uses: actions/setup-python@v5
95
+ with:
96
+ architecture: ${{ matrix.platform.target }}
97
+ - name: Build wheels
98
+ uses: PyO3/maturin-action@v1
99
+ with:
100
+ target: ${{ matrix.platform.target }}
101
+ args: --release --out dist --find-interpreter
102
+ # sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
103
+ - name: Upload wheels
104
+ uses: actions/upload-artifact@v4
105
+ with:
106
+ name: wheels-windows-${{ matrix.platform.target }}-${{ matrix.python-version }}
107
+ path: dist
108
+
109
+ macos:
110
+ runs-on: ${{ matrix.platform.runner }}
111
+ strategy:
112
+ matrix:
113
+ platform:
114
+ - runner: macos-13
115
+ target: x86_64
116
+ - runner: macos-14
117
+ target: aarch64
118
+ python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
119
+ steps:
120
+ - uses: actions/checkout@v4
121
+ - uses: actions/setup-python@v5
122
+ - name: Build wheels
123
+ uses: PyO3/maturin-action@v1
124
+ with:
125
+ target: ${{ matrix.platform.target }}
126
+ args: --release --out dist --find-interpreter
127
+ # sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
128
+ - name: Upload wheels
129
+ uses: actions/upload-artifact@v4
130
+ with:
131
+ name: wheels-macos-${{ matrix.platform.target }}-${{ matrix.python-version }}
132
+ path: dist
133
+
134
+ sdist:
135
+ runs-on: ubuntu-latest
136
+ steps:
137
+ - uses: actions/checkout@v4
138
+ - name: Build sdist
139
+ uses: PyO3/maturin-action@v1
140
+ with:
141
+ command: sdist
142
+ args: --out dist
143
+ - name: Upload sdist
144
+ uses: actions/upload-artifact@v4
145
+ with:
146
+ name: wheels-sdist
147
+ path: dist
148
+
149
+ release:
150
+ name: Release
151
+ runs-on: ubuntu-latest
152
+ # if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
153
+ needs: [linux, musllinux, windows, macos, sdist]
154
+ permissions:
155
+ # Use to sign the release artifacts
156
+ id-token: write
157
+ # Used to upload release artifacts
158
+ contents: write
159
+ # Used to generate artifact attestation
160
+ attestations: write
161
+ steps:
162
+ - uses: actions/download-artifact@v4
163
+ - name: Generate artifact attestation
164
+ uses: actions/attest-build-provenance@v2
165
+ with:
166
+ subject-path: 'wheels-*/*'
167
+ - name: Publish to PyPI
168
+ # if: ${{ startsWith(github.ref, 'refs/tags/') }}
169
+ uses: PyO3/maturin-action@v1
170
+ env:
171
+ MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
172
+ with:
173
+ command: upload
174
+ args: --non-interactive --skip-existing wheels-*/*
@@ -10,8 +10,8 @@ jobs:
10
10
  runs-on: ubuntu-latest
11
11
  strategy:
12
12
  matrix:
13
- target: [x86_64]
14
- python-version: ["3.9", "3.10", "3.11", "3.12"]
13
+ target: [x86_64, aarch64]
14
+ python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
15
15
  steps:
16
16
  - uses: actions/checkout@v3
17
17
  - uses: actions/setup-python@v4
@@ -0,0 +1,27 @@
1
+ # Changelog
2
+
3
+ ## 0.2.4 2025-03-14
4
+
5
+ ### Changed
6
+
7
+ * Update interpn rust dep
8
+ * ~2-6x speedup for lower-dimensional inputs
9
+ * Update bindings for latest pyo3 and numpy rust deps
10
+ * Add .cargo/config.toml with configuration to enable vector instruction sets for x86 targets
11
+ * ~10-30% speedup for regular grid methods on x86 machines (compounded with earlier 2-6x speedup)
12
+ * Regenerate CI configuration
13
+ * Support python 3.13
14
+
15
+ ## 0.2.3 2024-08-20
16
+
17
+ ### Changed
18
+
19
+ * Update interpn rust dep to 0.4.3 to capture upgraded linear methods
20
+
21
+ ## 0.2.2 2024-07-08
22
+
23
+ ### Changed
24
+
25
+ * Update python deps incl. numpy >2
26
+ * Update rust deps
27
+ * Support python 3.12
@@ -1,10 +1,10 @@
1
1
  # This file is automatically @generated by Cargo.
2
2
  # It is not intended for manual editing.
3
- version = 3
3
+ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "_interpn"
7
- version = "0.1.4"
7
+ version = "0.1.5"
8
8
  dependencies = [
9
9
  "interpn",
10
10
  "numpy",
@@ -17,12 +17,6 @@ version = "1.3.0"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
18
  checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
19
19
 
20
- [[package]]
21
- name = "bitflags"
22
- version = "2.6.0"
23
- source = "registry+https://github.com/rust-lang/crates.io-index"
24
- checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
25
-
26
20
  [[package]]
27
21
  name = "cfg-if"
28
22
  version = "1.0.0"
@@ -31,9 +25,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
31
25
 
32
26
  [[package]]
33
27
  name = "heck"
34
- version = "0.4.1"
28
+ version = "0.5.0"
35
29
  source = "registry+https://github.com/rust-lang/crates.io-index"
36
- checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
30
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
37
31
 
38
32
  [[package]]
39
33
  name = "indoc"
@@ -43,9 +37,9 @@ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
43
37
 
44
38
  [[package]]
45
39
  name = "interpn"
46
- version = "0.4.3"
40
+ version = "0.4.5"
47
41
  source = "registry+https://github.com/rust-lang/crates.io-index"
48
- checksum = "e75d8992f13845dc723c9a4cf8b40915579e4a6744e12a6df8372cf5ce5b0084"
42
+ checksum = "02ec70afcc0ec878f809e229f179bcf0d6c800ce04b2c4e406bb1d8a7ea3205d"
49
43
  dependencies = [
50
44
  "num-traits",
51
45
  ]
@@ -62,16 +56,6 @@ version = "0.2.8"
62
56
  source = "registry+https://github.com/rust-lang/crates.io-index"
63
57
  checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
64
58
 
65
- [[package]]
66
- name = "lock_api"
67
- version = "0.4.12"
68
- source = "registry+https://github.com/rust-lang/crates.io-index"
69
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
70
- dependencies = [
71
- "autocfg",
72
- "scopeguard",
73
- ]
74
-
75
59
  [[package]]
76
60
  name = "matrixmultiply"
77
61
  version = "0.3.9"
@@ -134,9 +118,9 @@ dependencies = [
134
118
 
135
119
  [[package]]
136
120
  name = "numpy"
137
- version = "0.21.0"
121
+ version = "0.24.0"
138
122
  source = "registry+https://github.com/rust-lang/crates.io-index"
139
- checksum = "ec170733ca37175f5d75a5bea5911d6ff45d2cd52849ce98b685394e4f2f37f4"
123
+ checksum = "a7cfbf3f0feededcaa4d289fe3079b03659e85c5b5a177f4ba6fb01ab4fb3e39"
140
124
  dependencies = [
141
125
  "libc",
142
126
  "ndarray",
@@ -144,6 +128,7 @@ dependencies = [
144
128
  "num-integer",
145
129
  "num-traits",
146
130
  "pyo3",
131
+ "pyo3-build-config",
147
132
  "rustc-hash",
148
133
  ]
149
134
 
@@ -153,29 +138,6 @@ version = "1.19.0"
153
138
  source = "registry+https://github.com/rust-lang/crates.io-index"
154
139
  checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
155
140
 
156
- [[package]]
157
- name = "parking_lot"
158
- version = "0.12.3"
159
- source = "registry+https://github.com/rust-lang/crates.io-index"
160
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
161
- dependencies = [
162
- "lock_api",
163
- "parking_lot_core",
164
- ]
165
-
166
- [[package]]
167
- name = "parking_lot_core"
168
- version = "0.9.10"
169
- source = "registry+https://github.com/rust-lang/crates.io-index"
170
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
171
- dependencies = [
172
- "cfg-if",
173
- "libc",
174
- "redox_syscall",
175
- "smallvec",
176
- "windows-targets",
177
- ]
178
-
179
141
  [[package]]
180
142
  name = "portable-atomic"
181
143
  version = "1.7.0"
@@ -193,15 +155,15 @@ dependencies = [
193
155
 
194
156
  [[package]]
195
157
  name = "pyo3"
196
- version = "0.21.2"
158
+ version = "0.24.0"
197
159
  source = "registry+https://github.com/rust-lang/crates.io-index"
198
- checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
160
+ checksum = "7f1c6c3591120564d64db2261bec5f910ae454f01def849b9c22835a84695e86"
199
161
  dependencies = [
200
162
  "cfg-if",
201
163
  "indoc",
202
164
  "libc",
203
165
  "memoffset",
204
- "parking_lot",
166
+ "once_cell",
205
167
  "portable-atomic",
206
168
  "pyo3-build-config",
207
169
  "pyo3-ffi",
@@ -211,9 +173,9 @@ dependencies = [
211
173
 
212
174
  [[package]]
213
175
  name = "pyo3-build-config"
214
- version = "0.21.2"
176
+ version = "0.24.0"
215
177
  source = "registry+https://github.com/rust-lang/crates.io-index"
216
- checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
178
+ checksum = "e9b6c2b34cf71427ea37c7001aefbaeb85886a074795e35f161f5aecc7620a7a"
217
179
  dependencies = [
218
180
  "once_cell",
219
181
  "target-lexicon",
@@ -221,9 +183,9 @@ dependencies = [
221
183
 
222
184
  [[package]]
223
185
  name = "pyo3-ffi"
224
- version = "0.21.2"
186
+ version = "0.24.0"
225
187
  source = "registry+https://github.com/rust-lang/crates.io-index"
226
- checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
188
+ checksum = "5507651906a46432cdda02cd02dd0319f6064f1374c9147c45b978621d2c3a9c"
227
189
  dependencies = [
228
190
  "libc",
229
191
  "pyo3-build-config",
@@ -231,9 +193,9 @@ dependencies = [
231
193
 
232
194
  [[package]]
233
195
  name = "pyo3-macros"
234
- version = "0.21.2"
196
+ version = "0.24.0"
235
197
  source = "registry+https://github.com/rust-lang/crates.io-index"
236
- checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
198
+ checksum = "b0d394b5b4fd8d97d48336bb0dd2aebabad39f1d294edd6bcd2cccf2eefe6f42"
237
199
  dependencies = [
238
200
  "proc-macro2",
239
201
  "pyo3-macros-backend",
@@ -243,9 +205,9 @@ dependencies = [
243
205
 
244
206
  [[package]]
245
207
  name = "pyo3-macros-backend"
246
- version = "0.21.2"
208
+ version = "0.24.0"
247
209
  source = "registry+https://github.com/rust-lang/crates.io-index"
248
- checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
210
+ checksum = "fd72da09cfa943b1080f621f024d2ef7e2773df7badd51aa30a2be1f8caa7c8e"
249
211
  dependencies = [
250
212
  "heck",
251
213
  "proc-macro2",
@@ -269,32 +231,11 @@ version = "0.2.1"
269
231
  source = "registry+https://github.com/rust-lang/crates.io-index"
270
232
  checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
271
233
 
272
- [[package]]
273
- name = "redox_syscall"
274
- version = "0.5.3"
275
- source = "registry+https://github.com/rust-lang/crates.io-index"
276
- checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
277
- dependencies = [
278
- "bitflags",
279
- ]
280
-
281
234
  [[package]]
282
235
  name = "rustc-hash"
283
- version = "1.1.0"
236
+ version = "2.1.1"
284
237
  source = "registry+https://github.com/rust-lang/crates.io-index"
285
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
286
-
287
- [[package]]
288
- name = "scopeguard"
289
- version = "1.2.0"
290
- source = "registry+https://github.com/rust-lang/crates.io-index"
291
- checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
292
-
293
- [[package]]
294
- name = "smallvec"
295
- version = "1.13.2"
296
- source = "registry+https://github.com/rust-lang/crates.io-index"
297
- checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
238
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
298
239
 
299
240
  [[package]]
300
241
  name = "syn"
@@ -309,9 +250,9 @@ dependencies = [
309
250
 
310
251
  [[package]]
311
252
  name = "target-lexicon"
312
- version = "0.12.16"
253
+ version = "0.13.2"
313
254
  source = "registry+https://github.com/rust-lang/crates.io-index"
314
- checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
255
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
315
256
 
316
257
  [[package]]
317
258
  name = "unicode-ident"
@@ -324,67 +265,3 @@ name = "unindent"
324
265
  version = "0.2.3"
325
266
  source = "registry+https://github.com/rust-lang/crates.io-index"
326
267
  checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
327
-
328
- [[package]]
329
- name = "windows-targets"
330
- version = "0.52.6"
331
- source = "registry+https://github.com/rust-lang/crates.io-index"
332
- checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
333
- dependencies = [
334
- "windows_aarch64_gnullvm",
335
- "windows_aarch64_msvc",
336
- "windows_i686_gnu",
337
- "windows_i686_gnullvm",
338
- "windows_i686_msvc",
339
- "windows_x86_64_gnu",
340
- "windows_x86_64_gnullvm",
341
- "windows_x86_64_msvc",
342
- ]
343
-
344
- [[package]]
345
- name = "windows_aarch64_gnullvm"
346
- version = "0.52.6"
347
- source = "registry+https://github.com/rust-lang/crates.io-index"
348
- checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
349
-
350
- [[package]]
351
- name = "windows_aarch64_msvc"
352
- version = "0.52.6"
353
- source = "registry+https://github.com/rust-lang/crates.io-index"
354
- checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
355
-
356
- [[package]]
357
- name = "windows_i686_gnu"
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"
365
- source = "registry+https://github.com/rust-lang/crates.io-index"
366
- checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
367
-
368
- [[package]]
369
- name = "windows_i686_msvc"
370
- version = "0.52.6"
371
- source = "registry+https://github.com/rust-lang/crates.io-index"
372
- checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
373
-
374
- [[package]]
375
- name = "windows_x86_64_gnu"
376
- version = "0.52.6"
377
- source = "registry+https://github.com/rust-lang/crates.io-index"
378
- checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
379
-
380
- [[package]]
381
- name = "windows_x86_64_gnullvm"
382
- version = "0.52.6"
383
- source = "registry+https://github.com/rust-lang/crates.io-index"
384
- checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
385
-
386
- [[package]]
387
- name = "windows_x86_64_msvc"
388
- version = "0.52.6"
389
- source = "registry+https://github.com/rust-lang/crates.io-index"
390
- checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "_interpn"
3
- version = "0.1.4"
3
+ version = "0.1.5"
4
4
  edition = "2021"
5
5
 
6
6
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -9,9 +9,9 @@ name = "_interpn"
9
9
  crate-type = ["cdylib"]
10
10
 
11
11
  [dependencies]
12
- pyo3 = "^0.21.0"
13
- numpy = "^0.21.0"
14
- interpn = {version = "0.4.3", default_features = false}
12
+ pyo3 = "^0.24.0"
13
+ numpy = "^0.24.0"
14
+ interpn = {version = "0.4.5", default_features = false}
15
15
  #interpn = { path = "../interpn/interpn" }
16
16
 
17
17
  [profile.release]
@@ -1,32 +1,32 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: interpn
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
7
- Requires-Dist: numpy >=2
8
- Requires-Dist: pydantic >=2.5.2
9
- Requires-Dist: pytest >=8.0 ; extra == 'test'
10
- Requires-Dist: coverage >=7.3.2 ; extra == 'test'
11
- Requires-Dist: ruff >=0.4.10 ; extra == 'test'
12
- Requires-Dist: pyright ==1.1.337 ; extra == 'test'
13
- Requires-Dist: mktestdocs >=0.2.1 ; extra == 'test'
14
- Requires-Dist: scipy >=1.11.4 ; extra == 'test'
15
- Requires-Dist: matplotlib >=3.8 ; extra == 'test'
16
- Requires-Dist: scipy >=1.11.4 ; extra == 'bench'
17
- Requires-Dist: matplotlib >=3.8 ; extra == 'bench'
18
- Requires-Dist: memory-profiler >=0.61.0 ; extra == 'bench'
19
- Requires-Dist: mkdocs >=1.5.3 ; extra == 'doc'
20
- Requires-Dist: mkdocstrings-python >=1.7.5 ; extra == 'doc'
21
- Requires-Dist: mkdocs-material >=9.4.10 ; extra == 'doc'
7
+ Requires-Dist: numpy>=2
8
+ Requires-Dist: pydantic>=2.5.2
9
+ Requires-Dist: pytest>=8.0 ; extra == 'test'
10
+ Requires-Dist: coverage>=7.3.2 ; extra == 'test'
11
+ Requires-Dist: ruff>=0.4.10 ; extra == 'test'
12
+ Requires-Dist: pyright==1.1.337 ; extra == 'test'
13
+ Requires-Dist: mktestdocs>=0.2.1 ; extra == 'test'
14
+ Requires-Dist: scipy>=1.11.4 ; extra == 'test'
15
+ Requires-Dist: matplotlib>=3.8 ; extra == 'test'
16
+ Requires-Dist: scipy>=1.11.4 ; extra == 'bench'
17
+ Requires-Dist: matplotlib>=3.8 ; extra == 'bench'
18
+ Requires-Dist: memory-profiler>=0.61.0 ; extra == 'bench'
19
+ Requires-Dist: mkdocs>=1.5.3 ; extra == 'doc'
20
+ Requires-Dist: mkdocstrings-python>=1.7.5 ; extra == 'doc'
21
+ Requires-Dist: mkdocs-material>=9.4.10 ; extra == 'doc'
22
22
  Provides-Extra: test
23
23
  Provides-Extra: bench
24
24
  Provides-Extra: doc
25
25
  License-File: LICENSE-APACHE
26
26
  License-File: LICENSE-MIT
27
27
  Summary: N-dimensional interpolation/extrapolation methods
28
- Author-email: jlogan03@gmail.com
29
- Requires-Python: >=3.9, <3.13
28
+ Author-email: James Logan <jlogan03@gmail.com>
29
+ Requires-Python: >=3.9, <3.14
30
30
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
31
31
 
32
32
  # interpn