-
Notifications
You must be signed in to change notification settings - Fork 7
Update9.1.0 #128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Update9.1.0 #128
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
e35d3c4
Update to SuiteSparse:GraphBLAS 9.1.0
eriknw 858df89
maybe fix? (path and extra constant)
eriknw 01c7d1e
Update default include path to include "suitesparse"
eriknw 4f76637
Try this
eriknw fb18dc7
Maybe don't need this anymore for arm on mac os
eriknw 0caa925
Merge branch 'main' into update9.1.0
eriknw 8749bc2
Explicit macos x86 and arm runners
alugowski 38fe7be
Add dir dump
alugowski f42f731
Look in "/usr/local"
alugowski cf75a88
Try installing to prefix
alugowski a96d9ae
Cmake from .
alugowski 2580a67
Add lib64
alugowski fa0e837
Try installing to . instead of /tmp
alugowski 9c3b59e
Set MACOSX_DEPLOYMENT_TARGET
alugowski 0aee66c
Try installing to /usr/local/graphblas
alugowski aa35314
Try installing to {package}
alugowski fe9dffc
Fix
alugowski 855f1be
Add prints
alugowski 38298a8
Add print
alugowski a9b4c37
Try installing to .
alugowski 66e11b3
parent
alugowski 5dd9e9a
retry
alugowski 7e1c7a5
Disable JIT on Windows
alugowski 6a940fd
retry
alugowski c794d39
Fix if
alugowski a43bcfd
Revert to sys install
alugowski fcc2579
Fix sudo
alugowski 6a8c53c
Disable JIT on Windows
alugowski 270cffa
tweaks
alugowski e5ccb16
MSVC complex values
alugowski 41872fc
Revert prints
alugowski 891f221
Silence workflow warnings
alugowski b911474
Delete no longer used script
alugowski 1d348e1
Undo run tests on push
alugowski 0810cd0
Make linter happy
alugowski 9b27a84
Linter
alugowski bb3ec65
Support both suitesparse.sh and conda install paths
alugowski 5036424
Fix cibw_test_skip typo
alugowski f211aed
Build with numpy 2; add Python 3.13; drop Python 3.8
eriknw 1b2669a
Bump
eriknw 9141d43
Try setuptools<74
eriknw bc10b6e
experiment w/ setuptools as runtime dep
eriknw 8f04eaa
undo
eriknw 0447fda
Update cibuildwheel
eriknw 3653f5b
Use cibuildwheel 2.21, not 2.21.3
eriknw 71c53ba
Delete unnecessary code b/c we dropped Python 3.8
eriknw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -1 +1 @@ | ||
8.2.1 | ||
9.1.0 |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 |
---|---|---|
@@ -1,23 +1,21 @@ | ||
[build-system] | ||
build-backend = "setuptools.build_meta" | ||
requires = [ | ||
"setuptools >=64", | ||
# setuptools<74 until PyPy vendors cffi 1.15.1 | ||
"setuptools >=64, <74", | ||
"setuptools-git-versioning", | ||
"wheel", | ||
"cffi>=1.11", | ||
"cython", | ||
"oldest-supported-numpy; platform_python_implementation != 'PyPy'", | ||
# Inspired by SciPy: unpin numpy version for PyPy builds, | ||
# as oldest-supported-numpy does not take PyPy into account. | ||
"numpy; platform_python_implementation=='PyPy'", | ||
"numpy>=2.0", | ||
] | ||
|
||
[project] | ||
name = "suitesparse-graphblas" | ||
dynamic = ["version"] | ||
description = "SuiteSparse:GraphBLAS Python bindings." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{name = "Erik Welch", email = "[email protected]"}, | ||
|
@@ -53,11 +51,11 @@ classifiers = [ | |
"Operating System :: Microsoft :: Windows", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Other Audience", | ||
|
@@ -68,9 +66,8 @@ classifiers = [ | |
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
dependencies = [ | ||
# These are super-old; can/should we update them? | ||
"cffi>=1.11", | ||
"numpy>=1.19", | ||
"cffi>=1.15", | ||
"numpy>=1.23", | ||
] | ||
[project.urls] | ||
homepage = "https://github.com/GraphBLAS/python-suitesparse-graphblas" | ||
|
@@ -96,7 +93,7 @@ dirty_template = "{tag}+{ccount}.g{sha}.dirty" | |
|
||
[tool.black] | ||
line-length = 100 | ||
target-version = ["py38", "py39", "py310", "py311"] | ||
target-version = ["py39", "py310", "py311", "py312", "py313"] | ||
|
||
[tool.isort] | ||
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"] | ||
|
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.