diff options
Diffstat (limited to 'docs/source/conf.py')
| -rw-r--r-- | docs/source/conf.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index 14d3ed9..0feaab8 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -3,7 +3,11 @@ # For the full list of built-in configuration values, see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html -import GRPS +try: + import GRPS +except ImportError: + pass + import os, sys if sys.version_info >= (3, 11): |
