interpn 0.2.2__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.
- interpn-0.2.4/.cargo/config.toml +3 -0
- interpn-0.2.4/.github/workflows/CI.yml +174 -0
- {interpn-0.2.2 → interpn-0.2.4}/.github/workflows/test.yml +2 -2
- interpn-0.2.4/CHANGELOG.md +27 -0
- interpn-0.2.4/Cargo.lock +267 -0
- {interpn-0.2.2 → interpn-0.2.4}/Cargo.toml +4 -4
- {interpn-0.2.2 → interpn-0.2.4}/PKG-INFO +19 -19
- {interpn-0.2.2 → interpn-0.2.4}/docs/3d_throughput_vs_nobs.svg +361 -391
- {interpn-0.2.2 → interpn-0.2.4}/docs/3d_throughput_vs_nobs_prealloc.svg +363 -393
- {interpn-0.2.2 → interpn-0.2.4}/docs/6d_throughput_vs_nobs.svg +402 -393
- {interpn-0.2.2 → interpn-0.2.4}/docs/6d_throughput_vs_nobs_prealloc.svg +404 -395
- interpn-0.2.2/docs/throughput_vs_dims_1_obs.svg → interpn-0.2.4/docs/throughput_vs_dims_1000_obs.svg +337 -437
- interpn-0.2.2/docs/throughput_vs_dims_1000_obs.svg → interpn-0.2.4/docs/throughput_vs_dims_1_obs.svg +355 -787
- {interpn-0.2.2 → interpn-0.2.4}/pyproject.toml +3 -4
- {interpn-0.2.2 → interpn-0.2.4}/src/lib.rs +33 -33
- {interpn-0.2.2 → interpn-0.2.4}/test/bench_cpu.py +1 -1
- interpn-0.2.2/.github/workflows/CI.yml +0 -127
- interpn-0.2.2/CHANGELOG.md +0 -9
- interpn-0.2.2/Cargo.lock +0 -384
- {interpn-0.2.2 → interpn-0.2.4}/.gitignore +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/.readthedocs.yml +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/LICENSE-APACHE +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/LICENSE-MIT +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/README.md +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/docs/1d_quality_of_fit_Rectilinear.svg +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/docs/1d_quality_of_fit_Regular.svg +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/docs/2d_quality_of_fit_Rectilinear.svg +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/docs/2d_quality_of_fit_Regular.svg +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/docs/API_Docs.md +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/docs/index.md +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/docs/perf.md +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/docs/ram_vs_dims.svg +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/docs/requirements.txt +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/examples/cubic_comparison.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/interpn/__init__.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/interpn/multicubic_rectilinear.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/interpn/multicubic_regular.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/interpn/multilinear_rectilinear.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/interpn/multilinear_regular.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/interpn/py.typed +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/interpn/raw.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/interpn/serialization.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/mkdocs.yml +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/test/bench_mem.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/test/test_docs.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/test/test_multicubic_rectilinear.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/test/test_multicubic_regular.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/test/test_multilinear_rectilinear.py +0 -0
- {interpn-0.2.2 → interpn-0.2.4}/test/test_multilinear_regular.py +0 -0
|
@@ -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
|
interpn-0.2.4/Cargo.lock
ADDED
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "_interpn"
|
|
7
|
+
version = "0.1.5"
|
|
8
|
+
dependencies = [
|
|
9
|
+
"interpn",
|
|
10
|
+
"numpy",
|
|
11
|
+
"pyo3",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "autocfg"
|
|
16
|
+
version = "1.3.0"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "cfg-if"
|
|
22
|
+
version = "1.0.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "heck"
|
|
28
|
+
version = "0.5.0"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "indoc"
|
|
34
|
+
version = "2.0.5"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "interpn"
|
|
40
|
+
version = "0.4.5"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "02ec70afcc0ec878f809e229f179bcf0d6c800ce04b2c4e406bb1d8a7ea3205d"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"num-traits",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "libc"
|
|
49
|
+
version = "0.2.158"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "libm"
|
|
55
|
+
version = "0.2.8"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "matrixmultiply"
|
|
61
|
+
version = "0.3.9"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"autocfg",
|
|
66
|
+
"rawpointer",
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "memoffset"
|
|
71
|
+
version = "0.9.1"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
74
|
+
dependencies = [
|
|
75
|
+
"autocfg",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "ndarray"
|
|
80
|
+
version = "0.15.6"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"matrixmultiply",
|
|
85
|
+
"num-complex",
|
|
86
|
+
"num-integer",
|
|
87
|
+
"num-traits",
|
|
88
|
+
"rawpointer",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "num-complex"
|
|
93
|
+
version = "0.4.6"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
96
|
+
dependencies = [
|
|
97
|
+
"num-traits",
|
|
98
|
+
]
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "num-integer"
|
|
102
|
+
version = "0.1.46"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"num-traits",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "num-traits"
|
|
111
|
+
version = "0.2.19"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"autocfg",
|
|
116
|
+
"libm",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "numpy"
|
|
121
|
+
version = "0.24.0"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "a7cfbf3f0feededcaa4d289fe3079b03659e85c5b5a177f4ba6fb01ab4fb3e39"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"libc",
|
|
126
|
+
"ndarray",
|
|
127
|
+
"num-complex",
|
|
128
|
+
"num-integer",
|
|
129
|
+
"num-traits",
|
|
130
|
+
"pyo3",
|
|
131
|
+
"pyo3-build-config",
|
|
132
|
+
"rustc-hash",
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "once_cell"
|
|
137
|
+
version = "1.19.0"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "portable-atomic"
|
|
143
|
+
version = "1.7.0"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "proc-macro2"
|
|
149
|
+
version = "1.0.86"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
|
152
|
+
dependencies = [
|
|
153
|
+
"unicode-ident",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "pyo3"
|
|
158
|
+
version = "0.24.0"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "7f1c6c3591120564d64db2261bec5f910ae454f01def849b9c22835a84695e86"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"cfg-if",
|
|
163
|
+
"indoc",
|
|
164
|
+
"libc",
|
|
165
|
+
"memoffset",
|
|
166
|
+
"once_cell",
|
|
167
|
+
"portable-atomic",
|
|
168
|
+
"pyo3-build-config",
|
|
169
|
+
"pyo3-ffi",
|
|
170
|
+
"pyo3-macros",
|
|
171
|
+
"unindent",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "pyo3-build-config"
|
|
176
|
+
version = "0.24.0"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "e9b6c2b34cf71427ea37c7001aefbaeb85886a074795e35f161f5aecc7620a7a"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"once_cell",
|
|
181
|
+
"target-lexicon",
|
|
182
|
+
]
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "pyo3-ffi"
|
|
186
|
+
version = "0.24.0"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "5507651906a46432cdda02cd02dd0319f6064f1374c9147c45b978621d2c3a9c"
|
|
189
|
+
dependencies = [
|
|
190
|
+
"libc",
|
|
191
|
+
"pyo3-build-config",
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "pyo3-macros"
|
|
196
|
+
version = "0.24.0"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "b0d394b5b4fd8d97d48336bb0dd2aebabad39f1d294edd6bcd2cccf2eefe6f42"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"proc-macro2",
|
|
201
|
+
"pyo3-macros-backend",
|
|
202
|
+
"quote",
|
|
203
|
+
"syn",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "pyo3-macros-backend"
|
|
208
|
+
version = "0.24.0"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "fd72da09cfa943b1080f621f024d2ef7e2773df7badd51aa30a2be1f8caa7c8e"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"heck",
|
|
213
|
+
"proc-macro2",
|
|
214
|
+
"pyo3-build-config",
|
|
215
|
+
"quote",
|
|
216
|
+
"syn",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "quote"
|
|
221
|
+
version = "1.0.36"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
224
|
+
dependencies = [
|
|
225
|
+
"proc-macro2",
|
|
226
|
+
]
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "rawpointer"
|
|
230
|
+
version = "0.2.1"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "rustc-hash"
|
|
236
|
+
version = "2.1.1"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "syn"
|
|
242
|
+
version = "2.0.75"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "f6af063034fc1935ede7be0122941bafa9bacb949334d090b77ca98b5817c7d9"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"proc-macro2",
|
|
247
|
+
"quote",
|
|
248
|
+
"unicode-ident",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "target-lexicon"
|
|
253
|
+
version = "0.13.2"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "unicode-ident"
|
|
259
|
+
version = "1.0.12"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "unindent"
|
|
265
|
+
version = "0.2.3"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "_interpn"
|
|
3
|
-
version = "0.1.
|
|
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.
|
|
13
|
-
numpy = "^0.
|
|
14
|
-
interpn = {version = "0.4.
|
|
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.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: interpn
|
|
3
|
-
Version: 0.2.
|
|
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
|
|
8
|
-
Requires-Dist: pydantic
|
|
9
|
-
Requires-Dist: pytest
|
|
10
|
-
Requires-Dist: coverage
|
|
11
|
-
Requires-Dist: ruff
|
|
12
|
-
Requires-Dist: pyright
|
|
13
|
-
Requires-Dist: mktestdocs
|
|
14
|
-
Requires-Dist: scipy
|
|
15
|
-
Requires-Dist: matplotlib
|
|
16
|
-
Requires-Dist: scipy
|
|
17
|
-
Requires-Dist: matplotlib
|
|
18
|
-
Requires-Dist: memory-profiler
|
|
19
|
-
Requires-Dist: mkdocs
|
|
20
|
-
Requires-Dist: mkdocstrings-python
|
|
21
|
-
Requires-Dist: mkdocs-material
|
|
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.
|
|
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
|