unitfield 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.
- {unitfield-0.2.3/unitfield.egg-info → unitfield-0.2.4}/PKG-INFO +1 -1
- {unitfield-0.2.3 → unitfield-0.2.4}/pyproject.toml +1 -1
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/core/__init__.py +1 -1
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/cython/_clip_abs.c +152 -152
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/cython/_remap_kernel.c +152 -152
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/cython/_remap_kernel_1d.c +152 -152
- {unitfield-0.2.3 → unitfield-0.2.4/unitfield.egg-info}/PKG-INFO +1 -1
- {unitfield-0.2.3 → unitfield-0.2.4}/LICENSE +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/MANIFEST.in +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/README.md +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/setup.cfg +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/setup.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/__init__.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/core/border_config.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/core/enums.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/core/types.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/core/unitfield.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/cython/__init__.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/cython/_clip_abs.pxd +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/cython/_clip_abs.pyx +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/cython/_clip_abs_fallback.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/cython/_remap_kernel.pxd +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/cython/_remap_kernel.pyx +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/cython/_remap_kernel_1d.pyx +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/cython/_zero_sign.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/cython/border_handling.pxd +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/interpolation/__init__.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/interpolation/interp_cv2.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/interpolation/interp_np.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/py.typed +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/utilities/__init__.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield/utilities/positional_basematrix.py +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield.egg-info/SOURCES.txt +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield.egg-info/dependency_links.txt +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield.egg-info/requires.txt +0 -0
- {unitfield-0.2.3 → unitfield-0.2.4}/unitfield.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: unitfield
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: High-performance N-dimensional unit field transformations with Cython-accelerated remapping
|
|
5
5
|
Author-email: GrayJou <grayjou@users.noreply.github.com>
|
|
6
6
|
Maintainer-email: GrayJou <grayjou@users.noreply.github.com>
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "unitfield"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.4"
|
|
8
8
|
description = "High-performance N-dimensional unit field transformations with Cython-accelerated remapping"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|