Skip to content

Commit 597ffa4

Browse files
Add sphinx-autobuild, add double lift cores
1 parent fbe973a commit 597ffa4

File tree

5 files changed

+992
-8
lines changed

5 files changed

+992
-8
lines changed

docs/user_guide/geometry.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,10 @@ Concrete Sections
309309
~sectionproperties.pre.library.concrete_sections.concrete_circular_section
310310
~sectionproperties.pre.library.concrete_sections.rectangular_wall
311311
~sectionproperties.pre.library.concrete_sections.cee_wall
312+
~sectionproperties.pre.library.concrete_sections.tee_wall
313+
~sectionproperties.pre.library.concrete_sections.single_lift_core
314+
~sectionproperties.pre.library.concrete_sections.double_lift_core_a
315+
~sectionproperties.pre.library.concrete_sections.double_lift_core_b
312316

313317
.. _label-bridge-library:
314318

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ pardiso = [
6464
docs = [
6565
"furo==2024.8.6",
6666
"sphinx==8.1.3",
67-
"notebook==7.2.2",
6867
"ipykernel==6.29.5",
6968
"ipython==8.29.0",
7069
"nbsphinx==0.9.5",
@@ -85,10 +84,12 @@ lint = [
8584
]
8685
dev = [
8786
"ipympl==0.9.4",
87+
"notebook==7.2.2",
88+
"sphinx-autobuild==2024.10.03",
8889
]
8990

9091
[tool.uv]
91-
default-groups = ["docs", "test", "lint"]
92+
default-groups = ["docs", "test", "lint", "dev"]
9293

9394
[tool.pyright]
9495
venvPath = "."

src/sectionproperties/pre/library/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111
concrete_column_section,
1212
concrete_rectangular_section,
1313
concrete_tee_section,
14+
double_lift_core_a,
15+
double_lift_core_b,
1416
rectangular_wall,
17+
single_lift_core,
18+
tee_wall,
1519
)
1620
from sectionproperties.pre.library.nastran_sections import (
1721
nastran_bar,

0 commit comments

Comments
 (0)