From 8b5fb47c543cbc7a1967725d34288feaf0c32483 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Wed, 8 Mar 2023 14:01:49 -0500 Subject: [PATCH 1/3] ENH: Enable use of pyproject.toml --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 84d2ed8..291f885 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -codespell>=2.0.0 +codespell[toml]>=2.2.4 From 3ca42c5afa8ebde39707ed93e5380e8f79145847 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Wed, 8 Mar 2023 14:07:30 -0500 Subject: [PATCH 2/3] FIX: Try a fix --- .github/workflows/testing.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 1dea6fb..263b4fa 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -23,10 +23,15 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 + with: + python-version: 3.10 - name: Install codespell via pip using ${{ matrix.codespell_pip_version }} run: pip3 --quiet --quiet install ${{ matrix.codespell_pip_version }} + - name: Check codespell + run: codespell --version + - name: Install Bats run: | git clone --quiet https://github.com/bats-core/bats-core.git From 977c7e98a3742b2dfb0c9bf4b39fc2f365c68888 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Wed, 8 Mar 2023 14:08:22 -0500 Subject: [PATCH 3/3] FIX: Again --- .github/workflows/testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 263b4fa..554eafe 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -24,10 +24,10 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: 3.10 + python-version: '3.10' - name: Install codespell via pip using ${{ matrix.codespell_pip_version }} - run: pip3 --quiet --quiet install ${{ matrix.codespell_pip_version }} + run: pip install ${{ matrix.codespell_pip_version }} - name: Check codespell run: codespell --version