Read the docs changes

This commit is contained in:
Roger Maitland 2022-07-15 16:40:02 -04:00
parent 1b43b60401
commit b536fa43c2
5 changed files with 19 additions and 12 deletions

View file

@ -9,8 +9,4 @@ The documentation for **build123d** can found at [readthedocs](https://build123d
To install **build123d** from github:
```
python3 -m pip install git+https://github.com/gumyr/build123d.git#egg=build123d
```
To install the working `dev` branch:
```
python3 -m pip install git+https://github.com/gumyr/build123d.git@dev#egg=build123d
```
```

View file

@ -90,4 +90,4 @@ html_theme = "sphinx_rtd_theme"
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["_static"]
#html_static_path = ["_static"]

View file

@ -50,9 +50,13 @@ from cadquery import (
)
from cadquery.occ_impl.shapes import VectorLike
import cq_warehouse.extensions
from .build123d_common import *
from .build_sketch import BuildSketch
from .build_part import BuildPart
# from .build123d_common import *
# from .build_sketch import BuildSketch
# from .build_part import BuildPart
from build123d.build123d_common import *
from build123d.build_sketch import BuildSketch
from build123d.build_part import BuildPart
class BuildLine:

View file

@ -60,7 +60,11 @@ from cadquery import (
)
from cadquery.occ_impl.shapes import VectorLike
import cq_warehouse.extensions
from .build123d_common import *
# from .build123d_common import *
from build123d.build123d_common import *
class BuildPart:

View file

@ -59,8 +59,11 @@ from cadquery.hull import find_hull
from cadquery import Edge, Face, Wire, Vector, Shape, Location, Vertex, Compound, Plane
from cadquery.occ_impl.shapes import VectorLike
import cq_warehouse.extensions
from .build123d_common import *
from .build_part import BuildPart
# from .build123d_common import *
# from .build_part import BuildPart
from build123d.build123d_common import *
from build123d.build_part import BuildPart
class BuildSketch: