From 606c66b68064a0d56e0b1a057cfc36fae2b76d4a Mon Sep 17 00:00:00 2001 From: mbi6245 Date: Thu, 27 Jun 2024 13:29:56 -0700 Subject: [PATCH] remove extraneous dependencies in transforms.py, add requirement of pandas dependency in pyproject.toml for testing purposes --- pyproject.toml | 2 +- src/distrx/transforms.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d136319..bf698e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ classifiers = [ "License :: OSI Approved :: BSD License", "Natural Language :: English", ] -dependencies = ["typing", "numpy"] +dependencies = ["typing", "numpy", "pandas"] [project.optional-dependencies] test = ["pytest", "pytest-cov"] diff --git a/src/distrx/transforms.py b/src/distrx/transforms.py index 39b3fe2..1d69f83 100644 --- a/src/distrx/transforms.py +++ b/src/distrx/transforms.py @@ -15,7 +15,6 @@ import numpy as np import numpy.typing as npt -from mrtool import MRBRT, LinearCovModel, MRData class FirstOrder: