From 85d2684e517759ddcb627170df98eb29049d1311 Mon Sep 17 00:00:00 2001 From: "Jonathan M. Waldrop" Date: Tue, 9 Sep 2025 15:52:56 -0500 Subject: [PATCH] Import chemist dependency in python --- src/python/module.cpp | 4 ++++ tests/python/unit_tests/test_property_type.py | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/python/module.cpp b/src/python/module.cpp index f6518775..d7c1573b 100644 --- a/src/python/module.cpp +++ b/src/python/module.cpp @@ -30,6 +30,10 @@ namespace simde { PYBIND11_MODULE(simde, m) { m.doc() = "PySimDE: Python bindings for the Simulation development environment"; + + // Import dependencies + python_module_type::import("chemist"); + export_chemical_system(m); export_basis_set(m); export_energy(m); diff --git a/tests/python/unit_tests/test_property_type.py b/tests/python/unit_tests/test_property_type.py index 766bc257..533b8eae 100644 --- a/tests/python/unit_tests/test_property_type.py +++ b/tests/python/unit_tests/test_property_type.py @@ -14,8 +14,6 @@ import unittest -import pluginplay as pp # noqa F401, needed for inputs() and results() - class BaseTestPropertyType(unittest.TestCase): def setUp(self):