From bdfc3d5567e631b75927fe1943e27c60acb75dd3 Mon Sep 17 00:00:00 2001 From: German Date: Thu, 21 Dec 2023 18:32:33 +0100 Subject: [PATCH] Adding dependencies --- pyproject.toml | 1 + src/ansys/mapdl/core/cli.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2932bb7ce4..3ed02af8c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ dependencies = [ "ansys-platform-instancemanagement~=1.0", "platformdirs>=3.6.0", "click>=8.1.3", # for CLI interface + "tabulate>=0.8.0", # for cli plotting "grpcio>=1.30.0", # tested up to grpcio==1.35 "importlib-metadata>=4.0", "matplotlib>=3.0.0", # for colormaps for pyvista diff --git a/src/ansys/mapdl/core/cli.py b/src/ansys/mapdl/core/cli.py index d72cc99ec1..ebe9526009 100644 --- a/src/ansys/mapdl/core/cli.py +++ b/src/ansys/mapdl/core/cli.py @@ -1,10 +1,10 @@ import os import psutil -from tabulate import tabulate try: import click + from tabulate import tabulate _HAS_CLICK = True except ModuleNotFoundError: