-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support rectangular (esp. sparse) matrices in pyflagser (#55) Cleanup code in `_extract_unweighted_graph` and `_extract_weighted_graph` * Bump version to 0.4.3, write release notes * Remove square input requirement from docstrings, fix some typos * Remove unused variables from flagser_count_unweighted
- Loading branch information
Showing
7 changed files
with
77 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
# 'X.Y.dev0' is the canonical version of 'X.Y.dev' | ||
# | ||
|
||
__version__ = '0.4.2' | ||
__version__ = '0.4.3' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
MAINTAINER_EMAIL = '[email protected]' | ||
URL = 'https://github.com/giotto-ai/pyflagser' | ||
LICENSE = 'GNU AGPLv3' | ||
DOWNLOAD_URL = 'https://github.com/giotto-ai/pyflagser/tarball/v0.4.2' | ||
DOWNLOAD_URL = 'https://github.com/giotto-ai/pyflagser/tarball/v0.4.3' | ||
VERSION = __version__ # noqa | ||
CLASSIFIERS = ['Intended Audience :: Science/Research', | ||
'Intended Audience :: Developers', | ||
|