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