From 2b257048f158c2ab65af6dd7cc084df1d0a8eff9 Mon Sep 17 00:00:00 2001 From: Mikhail Denisenko Date: Sun, 29 Oct 2023 17:28:59 -0400 Subject: [PATCH] Fixing doc build The error during build was: ``` WARNING: autodoc: failed to import module 'pytds'; the following exception was raised: No module named 'six' WARNING: autodoc: failed to import module 'login' from module 'pytds'; the following exception was raised: No module named 'six' ``` --- .readthedocs.yaml | 6 +++--- docs/requirements.txt | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 docs/requirements.txt diff --git a/.readthedocs.yaml b/.readthedocs.yaml index d9ee790..9712e40 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -17,6 +17,6 @@ sphinx: # We recommend specifying your dependencies to enable reproducible builds: # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html -# python: -# install: -# - requirements: docs/requirements.txt \ No newline at end of file +python: + install: + - requirements: docs/requirements.txt diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 0000000..58b77b6 --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1 @@ +six>=1.4.1