From ee0b60c1cd1de1183f9c9ed9e2f2658f7a58f313 Mon Sep 17 00:00:00 2001 From: Erik Welch Date: Mon, 2 Oct 2023 15:39:35 -0500 Subject: [PATCH] Update to 8.2.0 No changes to the C API --- .flake8 | 3 ++- .github/workflows/test.yml | 2 +- .pre-commit-config.yaml | 16 ++++++++-------- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.flake8 b/.flake8 index 414785b..efbe9a5 100644 --- a/.flake8 +++ b/.flake8 @@ -5,4 +5,5 @@ extend-ignore = E203, # E203 whitespace before ':' (to be compatible with black) per-file-ignores = - suitesparse_graphblas/io/binary.py:C408 + suitesparse_graphblas/io/binary.py:C408, + suitesparse_graphblas/tests/test_io.py:E721, diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4505b2a..7fd09f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: # os: ["ubuntu-latest"] # source: ["source"] python-version: ["3.8", "3.9", "3.10", "3.11"] - graphblas-version: ["8.0.2"] + graphblas-version: ["8.2.0"] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 535fee8..64bed06 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -20,12 +20,12 @@ repos: - id: mixed-line-ending # - id: trailing-whitespace - repo: https://github.com/abravalheri/validate-pyproject - rev: v0.13 + rev: v0.14 hooks: - id: validate-pyproject name: Validate pyproject.toml - repo: https://github.com/PyCQA/autoflake - rev: v2.2.0 + rev: v2.2.1 hooks: - id: autoflake args: [--in-place] @@ -34,7 +34,7 @@ repos: hooks: - id: isort - repo: https://github.com/asottile/pyupgrade - rev: v3.7.0 + rev: v3.13.0 hooks: - id: pyupgrade args: [--py38-plus] @@ -44,19 +44,19 @@ repos: # - id: auto-walrus # args: [--line-length, "100"] - repo: https://github.com/psf/black - rev: 23.3.0 + rev: 23.9.1 hooks: - id: black # - id: black-jupyter - repo: https://github.com/PyCQA/flake8 - rev: 6.0.0 + rev: 6.1.0 hooks: - id: flake8 additional_dependencies: &flake8_dependencies # These versions need updated manually - - flake8==6.0.0 - - flake8-comprehensions==3.13.0 - - flake8-bugbear==23.6.5 + - flake8==6.1.0 + - flake8-comprehensions==3.14.0 + - flake8-bugbear==23.9.16 # - flake8-simplify==0.20.0 - repo: https://github.com/asottile/yesqa rev: v1.5.0