File tree 5 files changed +112
-115
lines changed
5 files changed +112
-115
lines changed Original file line number Diff line number Diff line change 9
9
name : Unit tests
10
10
strategy :
11
11
matrix :
12
- python-version : ['3.10']
12
+ python-version : ['3.10', '3.12' ]
13
13
os : [macos-latest, ubuntu-latest, windows-latest]
14
14
15
15
runs-on : ${{ matrix.os }}
37
37
- name : set up Python
38
38
uses : actions/setup-python@v2
39
39
with :
40
- python-version : 3.7
40
+ python-version : ' 3.12 '
41
41
- name : set up node # we need node for for semantic release
42
42
uses : actions/setup-node@v4
43
43
with :
71
71
- name : set up Python
72
72
uses : actions/setup-python@v2
73
73
with :
74
- python-version : 3.7
74
+ python-version : ' 3.12 '
75
75
- name : install dependencies
76
76
run : |
77
77
pip install -U .
Original file line number Diff line number Diff line change 7
7
Provides methods for translating ladybug-geometry objects to VTK PolyData.
8
8
9
9
## Installation
10
+
11
+ To install the library use:
12
+
10
13
``` console
11
14
pip install ladybug-vtk
12
15
```
Original file line number Diff line number Diff line change 1
- pytest==6.2.4
2
- Sphinx==5.3.0
3
- docutils==0.17
1
+ pytest==8.3.2
2
+ Sphinx==8.0.2
4
3
sphinx-bootstrap-theme==0.8.1
5
4
sphinxcontrib-fulltoc==1.2.0
6
- sphinxcontrib-websupport==1.2.4
7
- sphinx-click==4.4.0
8
- twine==3.4.1
9
- wheel==0.38.1
10
- setuptools==65.5.1
11
- importlib-metadata==4.8.0
12
- jinja2==3.0.3
13
- markupsafe==2.0.1
5
+ sphinxcontrib-websupport==2.0.0
6
+ sphinx-click==6.0.0
7
+ twine==5.1.1
8
+ wheel==0.44.0
9
+ setuptools==75.1.0
10
+ importlib-metadata==8.5.0
Original file line number Diff line number Diff line change 5
5
* Sphinx stylesheet -- Bootstrap theme.
6
6
*/
7
7
8
+ /* Overwrite colors */
9
+ div .navbar-inverse {
10
+ background-color : # EB2227 ;
11
+ border-color : # EB2227 ;
12
+ }
13
+ a {
14
+ color : # EB2227 ;
15
+ }
16
+ a : visited {
17
+ color : # Bf0408 ;
18
+ }
19
+ code {
20
+ color : # Bf0408 ;
21
+ }
22
+ div .bs-sidenav a {
23
+ color : # 333333 ;
24
+ }
8
25
9
- /* The code below is based on the bootstrap website sidebar */
26
+ /* Prevent top nav from blocking docs */
27
+ div .navbar-fixed-top {
28
+ position : absolute;
29
+ }
10
30
31
+ /* Indent the side nav when in mobile mode */
32
+ @media screen and (min-width : 0px ) {
33
+ div .bs-sidenav ul {
34
+ margin-bottom : 0 ;
35
+ padding-left : 5px ;
36
+ list-style : none;
37
+ }
38
+ }
11
39
12
- /* Show and affix the side nav when space allows it */
40
+ /* Widen and de-indent the side nav when space is restricted */
13
41
@media screen and (min-width : 992px ) {
14
42
.bs-sidenav .nav > .active > ul {
15
43
display : block;
16
44
}
17
45
div .bs-sidenav ul {
18
46
margin-bottom : 0 ;
19
- padding-left : 5 px ;
47
+ padding-left : 0 px ;
20
48
list-style : none;
21
49
}
22
- div .bs-sidenav a {
23
- color : # 333333 ;
24
- }
25
- /* Widen the fixed sidenav */
26
- .bs-sidenav .affix ,
27
- .bs-sidenav .affix-bottom {
28
- width : 292px ;
29
- }
30
- .bs-sidenav .affix {
31
- position : fixed; /* Undo the static from mobile first approach */
32
- }
33
- .bs-sidenav .affix-bottom {
34
- position : absolute; /* Undo the static from mobile first approach */
35
- }
36
- .bs-sidenav .affix-bottom .bs-sidenav ,
37
- .bs-sidenav .affix .bs-sidenav {
38
- margin-top : 0 ;
39
- margin-bottom : 0 ;
50
+ .bs-sidenav {
51
+ width : 300px ;
40
52
}
41
53
}
54
+
55
+ /* Slightly indent the side nav when space allows it */
42
56
@media screen and (min-width : 1200px ) {
43
- /* Widen the fixed sidenav again */
44
- .bs-sidenav .affix-bottom ,
45
- .bs-sidenav .affix {
46
- width : 360px ;
57
+ div .bs-sidenav ul {
58
+ margin-bottom : 0 ;
59
+ padding-left : 5px ;
60
+ list-style : none;
61
+ }
62
+ .bs-sidenav {
63
+ width : 370px ;
47
64
}
48
65
}
You can’t perform that action at this time.
0 commit comments