sparseqr 1.4__tar.gz → 1.4.1__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.
- {sparseqr-1.4 → sparseqr-1.4.1}/CHANGELOG.md +4 -0
- {sparseqr-1.4 → sparseqr-1.4.1}/PKG-INFO +1 -1
- {sparseqr-1.4 → sparseqr-1.4.1}/pyproject.toml +1 -1
- {sparseqr-1.4 → sparseqr-1.4.1}/sparseqr/__init__.py +1 -1
- {sparseqr-1.4 → sparseqr-1.4.1}/sparseqr/sparseqr_gen.py +1 -1
- {sparseqr-1.4 → sparseqr-1.4.1}/.gitignore +0 -0
- {sparseqr-1.4 → sparseqr-1.4.1}/LICENSE.md +0 -0
- {sparseqr-1.4 → sparseqr-1.4.1}/README.md +0 -0
- {sparseqr-1.4 → sparseqr-1.4.1}/setup.py +0 -0
- {sparseqr-1.4 → sparseqr-1.4.1}/sparseqr/cffi_asarray.py +0 -0
- {sparseqr-1.4 → sparseqr-1.4.1}/sparseqr/sparseqr.py +0 -0
- {sparseqr-1.4 → sparseqr-1.4.1}/test/test.py +0 -0
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [v1.4.1] - 2025-02-10
|
|
10
|
+
### Fixed
|
|
11
|
+
- An import statement got lost in the 1.4 update.
|
|
12
|
+
|
|
9
13
|
## [v1.4] - 2025-01-28
|
|
10
14
|
### Fixed
|
|
11
15
|
- Modernized the build system (`pyproject.toml`).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: sparseqr
|
|
3
|
-
Version: 1.4
|
|
3
|
+
Version: 1.4.1
|
|
4
4
|
Summary: Python wrapper for SuiteSparseQR
|
|
5
5
|
Keywords: suitesparse,bindings,wrapper,scipy,numpy,qr-decomposition,qr-factorisation,sparse-matrix,sparse-linear-system,sparse-linear-solver
|
|
6
6
|
Author-email: Yotam Gingold <yotam@yotamgingold.com>
|
|
@@ -17,7 +17,7 @@ See the docstrings of the individual functions for details.
|
|
|
17
17
|
|
|
18
18
|
from __future__ import absolute_import
|
|
19
19
|
|
|
20
|
-
__version__ = '1.4'
|
|
20
|
+
__version__ = '1.4.1'
|
|
21
21
|
|
|
22
22
|
# import the important things into the package's top-level namespace.
|
|
23
23
|
from .sparseqr import qr, rz, solve, permutation_vector_to_matrix, qr_factorize,qmult
|
|
@@ -21,7 +21,7 @@ if 'CONDA_PREFIX' in os.environ:
|
|
|
21
21
|
## Otherwise, add common system-wide directories
|
|
22
22
|
else:
|
|
23
23
|
if platform.system() == 'Windows':
|
|
24
|
-
include_dirs.append( join('C:', 'Program Files', 'Python', 'suitesparse') )
|
|
24
|
+
include_dirs.append( os.path.join('C:', 'Program Files', 'Python', 'suitesparse') )
|
|
25
25
|
else:
|
|
26
26
|
include_dirs.append( '/usr/include/suitesparse' )
|
|
27
27
|
## Homebrew on macOS arm64 puts headers and libraries
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|