mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 22:00:31 -04:00
PR: 210595 Submitted by: yuri@rawbw.com PySparse extends the Python interpreter by a set of sparse matrix types holding double precision values. PySparse also includes modules that implement: - iterative methods for solving linear systems of equations - a set of standard preconditioners - an interface to a direct solver for sparse linear systems of equations (SuperLU) - a Jacobi-Davidson eigenvalue solver for the symmetric, generalised matrix eigenvalue problem (JDSYM) https://github.com/PythonOptimizers/pysparse
19 lines
764 B
Python
19 lines
764 B
Python
--- setup.py.orig 2016-06-10 21:29:48 UTC
|
|
+++ setup.py
|
|
@@ -109,7 +109,7 @@ def get_version():
|
|
version = '1.3'
|
|
release = False
|
|
if not release:
|
|
- version += '-dev' + svn_version()
|
|
+ version += '-dev'
|
|
return version
|
|
|
|
def write_version_py(filename=os.path.join('pysparse', 'version.py')):
|
|
@@ -142,7 +142,6 @@ def setup_package():
|
|
author_email = "{hamsel,d-orban,wd15}@sf.net,",
|
|
maintainer = "PySparse Developers",
|
|
maintainer_email = "{hamsel,d-orban,wd15}@sf.net,",
|
|
- summary = "Fast sparse matrix library for Python",
|
|
description = "Fast sparse matrix library for Python",
|
|
long_description = "\n".join(DOCLINES[2:]),
|
|
url = "pysparse.sf.net",
|