Skip to content

Commit

Permalink
review: applying @germa89's suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
clatapie committed Oct 21, 2024
1 parent 7b846be commit 25a9db4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 1 addition & 2 deletions minimum_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ importlib-metadata==8.5.0
numpy==2.1.2
platformdirs==4.3.6
psutil==6.1.0
pyansys-tools-versioning==0.6.0
requests==2.32.3
pyansys-tools-versioning==0.6.0
8 changes: 7 additions & 1 deletion src/ansys/mapdl/core/examples/downloads.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@
import shutil
import zipfile

import requests
try:
import requests

_HAS_REQUESTS = True

except ModuleNotFoundError:
_HAS_REQUESTS = False

from ansys.mapdl import core as pymapdl

Expand Down

0 comments on commit 25a9db4

Please sign in to comment.