Skip to content

Commit

Permalink
rename examples and update conf
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Nov 7, 2023
1 parent 7f8e4b8 commit 6c9d6d0
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
File renamed without changes
File renamed without changes
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_latest_version():
version = "latest"
else:
release = latest_version
version = ".".join(release.split(".")[0:2])
version = ".".join(release.split(".")[0:2]) # type: ignore

master_doc = "index"
source_suffix = {
Expand Down Expand Up @@ -176,7 +176,7 @@ def linkcode_resolve(domain, info):
return None

package = info["module"].split(".")[0]
if not package.startswith("compas"):
if not package.startswith("compas_occ"):
return None

module = importlib.import_module(info["module"])
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
********************************************************************************
BrepFace with Hole
Brep with Hole
********************************************************************************

.. figure:: /_images/example_brepface_with_hole.png
.. figure:: /_images/example_brep_with_hole.png
:figclass: figure
:class: figure-img img-fluid


.. literalinclude:: brepface_with_hole.py
.. literalinclude:: brep_with_hole.py
:language: python
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
********************************************************************************
BrepFace with Holes
Brep with Holes
********************************************************************************

.. figure:: /_images/example_brepface_with_holes.png
.. figure:: /_images/example_brep_with_holes.png
:figclass: figure
:class: figure-img img-fluid


.. literalinclude:: brepface_with_holes.py
.. literalinclude:: brep_with_holes.py
:language: python

0 comments on commit 6c9d6d0

Please sign in to comment.