File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
timeout-minutes : 5
10
10
steps :
11
- - uses : actions/checkout@v3
11
+ - uses : actions/checkout@v4
12
12
- name : Set up Python ${{ matrix.python-version }}
13
- uses : actions/setup-python@v4
13
+ uses : actions/setup-python@v5
14
14
with :
15
15
python-version : " 3.10"
16
16
- name : Lint code
27
27
id-token : write
28
28
timeout-minutes : 10
29
29
steps :
30
- - uses : actions/checkout@v3
30
+ - uses : actions/checkout@v4
31
31
- name : Set up Python ${{ matrix.python-version }}
32
- uses : actions/setup-python@v4
32
+ uses : actions/setup-python@v5
33
33
with :
34
34
python-version : 3.8
35
35
- name : Install pypa/build
Original file line number Diff line number Diff line change 3
3
4
4
__all__ = ["load_ipython_extension" , "unload_ipython_extension" ]
5
5
6
- VERSION = "0.1.3 "
6
+ VERSION = "0.2.0 "
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ authors = [
9
9
]
10
10
description =" A notebook extension to trace HTTP(S) requests."
11
11
readme =" README.md"
12
- requires-python = " >=3.7 .0"
12
+ requires-python = " >=3.8 .0"
13
13
license = {text = " Apache-2.0" }
14
14
classifiers = [
15
15
" Development Status :: 4 - Beta" ,
@@ -22,7 +22,7 @@ classifiers = [
22
22
]
23
23
dynamic = [" version" ]
24
24
dependencies = [
25
- " httpdbg >= 0.17.0 " ,
25
+ " httpdbg >= 0.24.2 " ,
26
26
" notebook"
27
27
]
28
28
You can’t perform that action at this time.
0 commit comments