I’m trying to build a site that uses this theme https://sphinxawesome.xyz/ however due to the imports in the conf.py file, it fails. I’m not sure how to properly set this up so that I can use this theme and its python modules.
from sphinx.application import Sphinx
from sphinx.util.docfields import Field
from sphinxawesome_theme import ThemeOptions, __version__
from sphinxawesome_theme.docsearch import DocSearchConfig
from sphinxawesome_theme.postprocess import Icons
example error that occurs for ThemeOptions and DocSearchConfig
ImportError: cannot import name "DocSearchConfig" from "sphinxawesome_theme.docsearch" (/opt/buildhome/python3.8/lib/python3.8/site-packages/sphinxawesome_theme/docsearch.py)
- I have a runtime.txt file with
3.8
set - I have a requirements.txt file that has a bunch of dependencies including sphinx and sphinxawesome_theme
Thanks!