Skip to content

Commit 481cb0b

Browse files
authored
remove python 3.7 support (#7)
1 parent 4cfb6cc commit 481cb0b

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99
timeout-minutes: 5
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- name: Set up Python ${{ matrix.python-version }}
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: "3.10"
1616
- name: Lint code
@@ -25,28 +25,30 @@ jobs:
2525
timeout-minutes: 15
2626
strategy:
2727
matrix:
28-
os: [macos-latest, windows-latest, ubuntu-20.04]
29-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
28+
os: [macos-latest, windows-latest, ubuntu-latest]
29+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
3030

3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- name: Set up Python ${{ matrix.python-version }}
34-
uses: actions/setup-python@v4
34+
uses: actions/setup-python@v5
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737
- name: Run tests
3838
run: |
3939
make ci
40+
env:
41+
PIP_USE_PEP517: 1
4042

4143
deploy:
4244
name: Deploy on PyPI
4345
needs: testospython
4446
runs-on: ubuntu-latest
4547
timeout-minutes: 10
4648
steps:
47-
- uses: actions/checkout@v3
49+
- uses: actions/checkout@v4
4850
- name: Set up Python ${{ matrix.python-version }}
49-
uses: actions/setup-python@v4
51+
uses: actions/setup-python@v5
5052
with:
5153
python-version: 3.8
5254
- name: Install pypa/build

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ authors = [
99
]
1010
description="A pytest plugin to record HTTP(S) requests with stack trace"
1111
readme="README.md"
12-
requires-python = ">=3.7.0"
12+
requires-python = ">=3.8.0"
1313
license = {text = "Apache-2.0"}
1414
classifiers = [
15-
"Development Status :: 3 - Alpha",
15+
"Development Status :: 4 - Beta",
1616
"Environment :: Web Environment",
1717
"Intended Audience :: Developers",
1818
"License :: OSI Approved :: Apache Software License",
@@ -24,7 +24,7 @@ classifiers = [
2424
]
2525
dynamic = ["version"]
2626
dependencies = [
27-
"httpdbg >= 0.17.0",
27+
"httpdbg >= 0.24.2",
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.3.3"
4+
VERSION = "0.4.0"

0 commit comments

Comments
 (0)