From 168a96d12136717df7cc434a7ca072d8867aa157 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Wed, 11 Sep 2024 00:12:05 -0400 Subject: [PATCH] ci: Fix cache-dependency-path --- .github/workflows/ci.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/mypy.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7032662..aeb1982 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: with: python-version: ${{ matrix.python-version }} cache: pip - cache-dependency-path: setup.cfg + cache-dependency-path: pyproject.toml - run: pip install .[test] # Python 3.10 issues "DeprecationWarning: There is no current event loop" spuriously - if: matrix.python-version == '3.10' diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d50ef67..1ccc149 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: with: python-version: '3.10' cache: pip - cache-dependency-path: setup.cfg + cache-dependency-path: pyproject.toml - shell: bash run: curl -s -S --retry 3 $BASEDIR/tests/install.sh | bash - - shell: bash diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index ab07d76..d5e1e50 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -10,6 +10,6 @@ jobs: with: python-version: '3.11' cache: pip - cache-dependency-path: setup.cfg + cache-dependency-path: pyproject.toml - run: pip install .[types] - run: mypy --strict --show-error-codes yapw