diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index aa4432b..ea55378 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -6,10 +6,10 @@ jobs: black: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: psf/black@stable with: options: "--check --verbose" src: "." jupyter: false - version: "22.12.0" \ No newline at end of file + version: "24.4.2" \ No newline at end of file diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index d86dbfa..a6018ab 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -8,12 +8,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies