Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ extend-ignore =
# E203 whitespace before ':' (to be compatible with black)
per-file-ignores =
scripts/create_pickle.py:F403,F405,
graphblas/tests/*.py:T201,
graphblas/tests/*.py:T201,B043,
graphblas/core/ss/matrix.py:SIM113,
graphblas/**/__init__.py:F401,
4 changes: 2 additions & 2 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
pyver: [3.10]
pyver: [3.11]
testopts:
- "--blocking"
# - "--non-blocking --record --runslow"
Expand All @@ -26,7 +26,7 @@ jobs:
# - "conda-forge"
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/imports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
pyver: ${{ steps.pyver.outputs.selected }}
steps:
- name: RNG for os
uses: ddradar/choose-random-action@v3.0.0
uses: ddradar/choose-random-action@v4.1.0
id: os
with:
contents: |
Expand All @@ -26,14 +26,14 @@ jobs:
1
1
- name: RNG for Python version
uses: ddradar/choose-random-action@v3.0.0
uses: ddradar/choose-random-action@v4.1.0
id: pyver
with:
contents: |
3.10
3.11
3.12
3.13
3.14
weights: |
1
1
Expand All @@ -45,14 +45,14 @@ jobs:
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# python-version: ["3.10", "3.11", "3.12", "3.13"]
# python-version: ["3.11", "3.12", "3.13", "3.14"]
# os: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ needs.rngs.outputs.pyver }}
# python-version: ${{ matrix.python-version }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
name: pre-commit-hooks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.10"
python-version: "3.11"
- uses: pre-commit/action@v3.0.1
10 changes: 5 additions & 5 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,19 @@ on:
jobs:
build_and_deploy:
runs-on: ubuntu-latest
if: github.repository == 'python-graphblas/python-graphblas'
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
python-version: "3.11"
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -36,7 +35,8 @@ jobs:
- name: Check with twine
run: python -m twine check --strict dist/*
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@v1.12.4
uses: pypa/gh-action-pypi-publish@v1.13.0
if: startsWith(github.ref, 'refs/tags/') && github.repository == 'python-graphblas/python-graphblas'
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
Loading
Loading