Skip to content

Commit 3bfdff9

Browse files
authored
Removals of EntityList, EntitySequence, JobManager, and Controller (#693)
Remove EntityList, EntitySequence, JobManager, and Controller as well as any references. [ committed by @juliaputko ] [ reviewed by @amandarichardsonn, @mellis13 ]
1 parent f49fde3 commit 3bfdff9

File tree

12 files changed

+26
-1688
lines changed

12 files changed

+26
-1688
lines changed

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,8 @@ module = [
147147
# FIXME: DO NOT MERGE THIS INTO DEVELOP BRANCH UNLESS THESE ARE PASSING OR
148148
# REMOVED!!
149149
"smartsim._core._cli.*",
150-
"smartsim._core.control.controller",
151150
"smartsim._core.control.manifest",
152151
"smartsim._core.entrypoints.dragon_client",
153-
"smartsim._core.launcher.colocated",
154152
"smartsim._core.launcher.launcher",
155153
"smartsim._core.launcher.local.*",
156154
"smartsim._core.launcher.lsf.*",

smartsim/_core/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2525
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2626

27-
from .control import Controller, Manifest, preview_renderer
27+
from .control import Manifest, preview_renderer
2828
from .generation import Generator
2929

30-
__all__ = ["Controller", "Manifest", "Generator", "preview_renderer"]
30+
__all__ = ["Manifest", "Generator", "preview_renderer"]

smartsim/_core/control/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,4 @@
2424
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2525
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2626

27-
from .controller import Controller
2827
from .manifest import Manifest

0 commit comments

Comments
 (0)