Skip to content
Merged

Maint #109

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
8 changes: 4 additions & 4 deletions .github/workflows/notebooks-check_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Setup python 3.9
- name: Setup python 3.10
uses: actions/setup-python@v6
with:
python-version: 3.9
python-version: "3.10"
- name: Install the project
run: |
uv pip install -r requirements.txt --resolution lowest-direct --system
Expand All @@ -39,10 +39,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup python 3.13
- name: Setup python 3.14
uses: actions/setup-python@v6
with:
python-version: 3.13
python-version: 3.14
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/notebooks-check_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,12 @@ on:
jobs:
test-windows:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.12
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notebooks-checks_mac-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: macOS-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
python-version: ["3.11", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
13 changes: 2 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ exclude: 'Past_Conferences_and_Schools/' # ignores the unmaintained notebooks

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v6.0.0
hooks:
- id: detect-private-key
description: "Check accidental private keys in code"
Expand All @@ -15,17 +15,8 @@ repos:
hooks:
- id: markdown-toc
name: markdown-toc
- repo: https://github.com/nbQA-dev/nbQA
rev: 1.7.1
hooks:
- id: nbqa-black
name: nbqa-black
description: "Run 'black' on a Jupyter Notebook"
language: python
require_serial: true
- id: nbqa-isort
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.1.6
rev: v0.14.5
hooks:
- id: ruff
fail_fast: true
Expand Down
Loading