From 0775d47c9a1436706932b1bf8911735881aec8e2 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 3 May 2024 20:01:34 -0400 Subject: [PATCH] allow testing with pytest 8.2.0 (#786) * allow testing with pytest 8.2.0 * dbg * dbg * fix? * no cache --- .github/workflows/ci.yml | 11 ----------- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bca21867..244463ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -158,17 +158,6 @@ jobs: - uses: actions/checkout@v3.6.0 with: persist-credentials: false - - uses: actions/cache@v4.0.2 - timeout-minutes: 5 - with: - path: | - ~/.cache/pip/ - ~/.cargo/bin/ - ~/.cargo/registry/cache/ - ~/.cargo/registry/src/ - ~/.cargo/git/db/ - src/_bcrypt/target/ - key: ${{ runner.os }}-${{ matrix.IMAGE.IMAGE }}-cargo-${{ hashFiles('**/Cargo.lock') }} - run: /venv/bin/pip install tox - run: '/venv/bin/tox' env: diff --git a/pyproject.toml b/pyproject.toml index 79c398cc..e365c8c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ packages = ["bcrypt"] readme = {file = "README.rst", content-type = "text/x-rst"} [project.optional-dependencies] -tests = ["pytest>=3.2.1,!=3.3.0,!=8.2.0"] +tests = ["pytest>=3.2.1,!=3.3.0"] typecheck = ["mypy"]