From 497d4857c13d8453539a17da1d8a03ab3eb4e47c Mon Sep 17 00:00:00 2001 From: LB Johnston Date: Fri, 14 Jul 2023 20:23:07 +1000 Subject: [PATCH] Fix deployment issue - Fixes #241 - See https://github.com/readthedocs/readthedocs.org/issues/10290 --- .readthedocs.yaml | 5 +++++ requirements.txt | 1 + 2 files changed, 6 insertions(+) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 1927be49..a66cedfa 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -3,6 +3,11 @@ version: 2 sphinx: configuration: docs/conf.py +build: + os: ubuntu-22.04 + tools: + python: '3.10' + python: version: 3.7 install: diff --git a/requirements.txt b/requirements.txt index 77b3cf75..20432e53 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ sphinx sphinx-intl myst_parser sphinx_copybutton +urllib3>=2.0.3