File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 14
14
15
15
jobs :
16
16
testing :
17
- name : Unit Testing (Python ${{ matrix.python }})
17
+ name : Unit Testing (Python ${{ matrix.python }}, ipywidgets${{ matrix.ipywidgets }} )
18
18
runs-on : ubuntu-20.04
19
19
strategy :
20
20
matrix :
23
23
- " 3.8"
24
24
- " 3.9"
25
25
- " 3.10"
26
+ ipywidgets :
27
+ - " <8"
28
+ - " ==8.0.0rc0"
26
29
27
30
steps :
28
31
- name : Checkout repository
35
38
36
39
- name : Install package and development dependencies
37
40
run : |
41
+ python -m pip install "ipywidgets${{ matrix.ipywidgets }}"
38
42
python -m pip install .
39
43
python -m pip install -r requirements-dev.txt
40
44
Original file line number Diff line number Diff line change 1
1
from ipywidgets_jsonschema .form import Form
2
2
3
- __version__ = "0.8.0 "
3
+ __version__ = "0.8.1 "
Original file line number Diff line number Diff line change 11
11
12
12
13
13
# We are providing some compatibility for ipywidgets v7 and v8
14
- IS_VERSION_8 = version .parse (ipywidgets .__version__ ) >= version . parse ( "8" )
14
+ IS_VERSION_8 = version .parse (ipywidgets .__version__ ). major == 8
15
15
16
16
17
17
class FormError (Exception ):
You can’t perform that action at this time.
0 commit comments