diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2024-09-06 10:58:24 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2024-09-06 12:02:20 +0200 |
commit | e8c1a3da8d98f09a1b455d6eebe17c1345e7bfbc (patch) | |
tree | 3dbc5377c1d31336851525a14bce1e8d8c6ecde1 /api | |
parent | a1ba6fb90620f04ef49f5d29d5ce0e2d812e37b2 (diff) |
Update to Alpine 3.20
Please note that it also updates python to 3.12.
Change-Id: I715194304b37b9cd52affa998a94ba5ec52e7732
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'api')
-rw-r--r-- | api/conf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/api/conf.py b/api/conf.py index 1f6645fd..f3c5c796 100644 --- a/api/conf.py +++ b/api/conf.py @@ -16,9 +16,9 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # -# import os -# import sys -# sys.path.insert(0, os.path.abspath('.')) +import os +import sys +sys.path.insert(0, os.path.abspath('..')) # -- General configuration ------------------------------------------------ |