Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
- name: Install pypa/build
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
]
description="A pytest plugin to record HTTP(S) requests with stack trace"
readme="README.md"
requires-python = ">=3.8.0"
requires-python = ">=3.9.0"
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 4 - Beta",
Expand All @@ -24,7 +24,7 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"httpdbg>=0.24.2,<0.28.0",
"httpdbg>=0.28.1",
"pytest>=7.0.0"
]

Expand Down
2 changes: 1 addition & 1 deletion pytest_httpdbg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
from pytest_httpdbg.plugin import httpdbg_record_filename # noqa F401

VERSION = "0.4.1"
VERSION = "0.5.0"