Skip to content

Commit f2ed0ed

Browse files
authored
drop python 3.8 support (#8)
1 parent c049c06 commit f2ed0ed

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
matrix:
2828
os: [macos-latest, windows-latest, ubuntu-latest]
29-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
29+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
3030

3131
steps:
3232
- uses: actions/checkout@v4
@@ -50,7 +50,7 @@ jobs:
5050
- name: Set up Python ${{ matrix.python-version }}
5151
uses: actions/setup-python@v5
5252
with:
53-
python-version: 3.8
53+
python-version: 3.9
5454
- name: Install pypa/build
5555
run: |
5656
python -m pip install --upgrade pip

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
]
1010
description="A pytest plugin to record HTTP(S) requests with stack trace"
1111
readme="README.md"
12-
requires-python = ">=3.8.0"
12+
requires-python = ">=3.9.0"
1313
license = {text = "Apache-2.0"}
1414
classifiers = [
1515
"Development Status :: 4 - Beta",
@@ -24,7 +24,7 @@ classifiers = [
2424
]
2525
dynamic = ["version"]
2626
dependencies = [
27-
"httpdbg>=0.24.2,<0.28.0",
27+
"httpdbg>=0.28.1",
2828
"pytest>=7.0.0"
2929
]
3030

pytest_httpdbg/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
22
from pytest_httpdbg.plugin import httpdbg_record_filename # noqa F401
33

4-
VERSION = "0.4.1"
4+
VERSION = "0.5.0"

0 commit comments

Comments
 (0)