Skip to content

Commit fb6b33a

Browse files
authored
Update to 8.2.0 (#98)
No changes to the C API
1 parent d2faa21 commit fb6b33a

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.flake8

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ extend-ignore =
55
E203,
66
# E203 whitespace before ':' (to be compatible with black)
77
per-file-ignores =
8-
suitesparse_graphblas/io/binary.py:C408
8+
suitesparse_graphblas/io/binary.py:C408,
9+
suitesparse_graphblas/tests/test_io.py:E721,

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# os: ["ubuntu-latest"]
2020
# source: ["source"]
2121
python-version: ["3.8", "3.9", "3.10", "3.11"]
22-
graphblas-version: ["8.0.2"]
22+
graphblas-version: ["8.2.0"]
2323
steps:
2424
- name: Checkout
2525
uses: actions/checkout@v4

.pre-commit-config.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ repos:
2020
- id: mixed-line-ending
2121
# - id: trailing-whitespace
2222
- repo: https://github.com/abravalheri/validate-pyproject
23-
rev: v0.13
23+
rev: v0.14
2424
hooks:
2525
- id: validate-pyproject
2626
name: Validate pyproject.toml
2727
- repo: https://github.com/PyCQA/autoflake
28-
rev: v2.2.0
28+
rev: v2.2.1
2929
hooks:
3030
- id: autoflake
3131
args: [--in-place]
@@ -34,7 +34,7 @@ repos:
3434
hooks:
3535
- id: isort
3636
- repo: https://github.com/asottile/pyupgrade
37-
rev: v3.7.0
37+
rev: v3.13.0
3838
hooks:
3939
- id: pyupgrade
4040
args: [--py38-plus]
@@ -44,19 +44,19 @@ repos:
4444
# - id: auto-walrus
4545
# args: [--line-length, "100"]
4646
- repo: https://github.com/psf/black
47-
rev: 23.3.0
47+
rev: 23.9.1
4848
hooks:
4949
- id: black
5050
# - id: black-jupyter
5151
- repo: https://github.com/PyCQA/flake8
52-
rev: 6.0.0
52+
rev: 6.1.0
5353
hooks:
5454
- id: flake8
5555
additional_dependencies: &flake8_dependencies
5656
# These versions need updated manually
57-
- flake8==6.0.0
58-
- flake8-comprehensions==3.13.0
59-
- flake8-bugbear==23.6.5
57+
- flake8==6.1.0
58+
- flake8-comprehensions==3.14.0
59+
- flake8-bugbear==23.9.16
6060
# - flake8-simplify==0.20.0
6161
- repo: https://github.com/asottile/yesqa
6262
rev: v1.5.0

0 commit comments

Comments
 (0)