Skip to content

Commit 41f67b8

Browse files
committed
ci(dev-deps): Update CI and dev deps to run on Python 3.12
1 parent 62f7f1c commit 41f67b8

File tree

5 files changed

+112
-115
lines changed

5 files changed

+112
-115
lines changed

.github/workflows/ci.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Unit tests
1010
strategy:
1111
matrix:
12-
python-version: ['3.10']
12+
python-version: ['3.10', '3.12']
1313
os: [macos-latest, ubuntu-latest, windows-latest]
1414

1515
runs-on: ${{ matrix.os }}
@@ -37,7 +37,7 @@ jobs:
3737
- name: set up Python
3838
uses: actions/setup-python@v2
3939
with:
40-
python-version: 3.7
40+
python-version: '3.12'
4141
- name: set up node # we need node for for semantic release
4242
uses: actions/setup-node@v4
4343
with:
@@ -71,7 +71,7 @@ jobs:
7171
- name: set up Python
7272
uses: actions/setup-python@v2
7373
with:
74-
python-version: 3.7
74+
python-version: '3.12'
7575
- name: install dependencies
7676
run: |
7777
pip install -U .

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
Provides methods for translating ladybug-geometry objects to VTK PolyData.
88

99
## Installation
10+
11+
To install the library use:
12+
1013
```console
1114
pip install ladybug-vtk
1215
```

dev-requirements.txt

+8-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
pytest==6.2.4
2-
Sphinx==5.3.0
3-
docutils==0.17
1+
pytest==8.3.2
2+
Sphinx==8.0.2
43
sphinx-bootstrap-theme==0.8.1
54
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

docs/_static/custom.css

+42-25
Original file line numberDiff line numberDiff line change
@@ -5,44 +5,61 @@
55
* Sphinx stylesheet -- Bootstrap theme.
66
*/
77

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+
}
825

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+
}
1030

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+
}
1139

12-
/* Show and affix the side nav when space allows it */
40+
/* Widen and de-indent the side nav when space is restricted */
1341
@media screen and (min-width: 992px) {
1442
.bs-sidenav .nav > .active > ul {
1543
display: block;
1644
}
1745
div.bs-sidenav ul {
1846
margin-bottom: 0;
19-
padding-left: 5px;
47+
padding-left: 0px;
2048
list-style: none;
2149
}
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;
4052
}
4153
}
54+
55+
/* Slightly indent the side nav when space allows it */
4256
@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;
4764
}
4865
}

0 commit comments

Comments
 (0)