Skip to content

Commit

Permalink
Adding dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Dec 21, 2023
1 parent 1dfa68a commit bdfc3d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/mapdl/core/cli.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import os

import psutil
from tabulate import tabulate

try:
import click
from tabulate import tabulate

_HAS_CLICK = True
except ModuleNotFoundError:
Expand Down

0 comments on commit bdfc3d5

Please sign in to comment.