From b639e66c816514e40604d46f0088fbceec1a5149 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Sat, 13 May 2023 15:10:56 +0100 Subject: [PATCH] test on py3.12 (#6448) * test on py3.12 * update to pytest-httpbin==2.0.0 --- .github/workflows/run-tests.yml | 2 +- requirements-dev.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 71fb63e44d..677ae11477 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"] os: [ubuntu-22.04, macOS-latest, windows-latest] include: # pypy-3.7 on Mac OS currently fails trying to compile diff --git a/requirements-dev.txt b/requirements-dev.txt index e29f2474d2..d62637378e 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,7 +1,7 @@ -e .[socks] pytest>=2.8.0,<=6.2.5 pytest-cov -pytest-httpbin==1.0.0 +pytest-httpbin==2.0.0 pytest-mock==2.0.0 httpbin==0.7.0 trustme diff --git a/setup.py b/setup.py index 323e4f886d..012354574d 100755 --- a/setup.py +++ b/setup.py @@ -65,7 +65,7 @@ def run_tests(self): "certifi>=2017.4.17", ] test_requirements = [ - "pytest-httpbin==0.0.7", + "pytest-httpbin==2.0.0", "pytest-cov", "pytest-mock", "pytest-xdist",