Skip to content

Commit 6750498

Browse files
committed
drop python 3.8 support
1 parent 8d42c8b commit 6750498

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Set up Python ${{ matrix.python-version }}
3232
uses: actions/setup-python@v5
3333
with:
34-
python-version: 3.8
34+
python-version: 3.9
3535
- name: Install pypa/build
3636
run: |
3737
python -m pip install --upgrade pip

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.2.1"
6+
VERSION = "0.3.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.8.0"
12+
requires-python = ">=3.9.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.24.2,<0.28.0",
25+
"httpdbg>=0.28.1",
2626
"notebook"
2727
]
2828

0 commit comments

Comments
 (0)