Skip to content

Commit 71dbae5

Browse files
authored
drop python 3.7 support (#3)
1 parent 4d7973d commit 71dbae5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

+4-4
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
@@ -27,9 +27,9 @@ jobs:
2727
id-token: write
2828
timeout-minutes: 10
2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
- name: Set up Python ${{ matrix.python-version }}
32-
uses: actions/setup-python@v4
32+
uses: actions/setup-python@v5
3333
with:
3434
python-version: 3.8
3535
- name: Install pypa/build

notebook_httpdbg/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
__all__ = ["load_ipython_extension", "unload_ipython_extension"]
55

6-
VERSION = "0.1.3"
6+
VERSION = "0.2.0"

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
]
1010
description="A notebook extension to trace HTTP(S) requests."
1111
readme="README.md"
12-
requires-python = ">=3.7.0"
12+
requires-python = ">=3.8.0"
1313
license = {text = "Apache-2.0"}
1414
classifiers = [
1515
"Development Status :: 4 - Beta",
@@ -22,7 +22,7 @@ classifiers = [
2222
]
2323
dynamic = ["version"]
2424
dependencies = [
25-
"httpdbg >= 0.17.0",
25+
"httpdbg >= 0.24.2",
2626
"notebook"
2727
]
2828

0 commit comments

Comments
 (0)