From b536fa43c27ec346bb299593a50b9d1b1f299c29 Mon Sep 17 00:00:00 2001 From: Roger Maitland Date: Fri, 15 Jul 2022 16:40:02 -0400 Subject: [PATCH] Read the docs changes --- README.md | 6 +----- docs/conf.py | 2 +- src/build123d/build_line.py | 10 +++++++--- src/build123d/build_part.py | 6 +++++- src/build123d/build_sketch.py | 7 +++++-- 5 files changed, 19 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index b238e59..1ceb854 100644 --- a/README.md +++ b/README.md @@ -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 -``` +``` \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 45016fd..7b5c317 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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"] diff --git a/src/build123d/build_line.py b/src/build123d/build_line.py index 5a24729..57c9b74 100644 --- a/src/build123d/build_line.py +++ b/src/build123d/build_line.py @@ -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: diff --git a/src/build123d/build_part.py b/src/build123d/build_part.py index e2ea15a..9e42944 100644 --- a/src/build123d/build_part.py +++ b/src/build123d/build_part.py @@ -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: diff --git a/src/build123d/build_sketch.py b/src/build123d/build_sketch.py index 4c464ed..ae9b0f6 100644 --- a/src/build123d/build_sketch.py +++ b/src/build123d/build_sketch.py @@ -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: