소스 검색

Add missing dev dependency on codespell

Maciej Katafiasz 5 달 전
부모
커밋
dc6ccd6900
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 1
      .github/workflows/pythontest.yml
  2. 2 1
      pyproject.toml

+ 0 - 1
.github/workflows/pythontest.yml

@@ -64,7 +64,6 @@ jobs:
           RUSTFLAGS: "-D warnings"
       - name: codespell
         run: |
-          pip install --upgrade codespell
           codespell --config .codespellrc .
       - name: Coverage test suite run
         run: |

+ 2 - 1
pyproject.toml

@@ -45,7 +45,8 @@ colordiff = ["rich"]
 dev = [
     "ruff==0.12.9",
     "mypy==1.17.0",
-    "dissolve>=0.1.1"
+    "dissolve>=0.1.1",
+    "codespell==2.4.1",
 ]
 merge = ["merge3"]
 fuzzing = ["atheris"]