From fb00aaca467ff290514f4744bc512c216611714b Mon Sep 17 00:00:00 2001 From: CJ Green <44074998+okaycj@users.noreply.github.com> Date: Tue, 17 Oct 2023 12:41:44 -0400 Subject: [PATCH 1/4] Add readthedocs yaml file (#342) --- .readthedocs.yaml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..103e08af --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,35 @@ +# Read the Docs configuration file for Sphinx projects +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the OS, Python version and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.12" + # You can also specify other tool versions: + # nodejs: "20" + # rust: "1.70" + # golang: "1.20" + +# Build documentation in the "docs/" directory with Sphinx +sphinx: + configuration: app/conf.py + # You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs + # builder: "dirhtml" + # Fail on all warnings to avoid broken references + # fail_on_warning: true + +# Optionally build your docs in additional formats such as PDF and ePub +# formats: +# - pdf +# - epub + +# Optional but recommended, declare the Python requirements required +# to build your documentation +# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +# python: +# install: +# - requirements: docs/requirements.txt \ No newline at end of file From 1d4d3b46cc210fadf8438b7fbfbb805eba38d2e9 Mon Sep 17 00:00:00 2001 From: CJ Green <44074998+okaycj@users.noreply.github.com> Date: Tue, 17 Oct 2023 12:45:50 -0400 Subject: [PATCH 2/4] Update python version (#343) --- .readthedocs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 103e08af..bff3c34b 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,7 +8,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.12" + python: "3.8" # You can also specify other tool versions: # nodejs: "20" # rust: "1.70" From 50733eeefd980d401d37defdd9580b0c642b1ab6 Mon Sep 17 00:00:00 2001 From: CJ Green <44074998+okaycj@users.noreply.github.com> Date: Tue, 17 Oct 2023 12:59:09 -0400 Subject: [PATCH 3/4] Add requirements file to read the docs (#344) --- .readthedocs.yaml | 6 +++--- app/requirements.txt | 26 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 3 deletions(-) create mode 100644 app/requirements.txt diff --git a/.readthedocs.yaml b/.readthedocs.yaml index bff3c34b..7c68fc0f 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -30,6 +30,6 @@ sphinx: # Optional but recommended, declare the Python requirements required # to build your documentation # See 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: app/requirements.txt \ No newline at end of file diff --git a/app/requirements.txt b/app/requirements.txt new file mode 100644 index 00000000..58a73a30 --- /dev/null +++ b/app/requirements.txt @@ -0,0 +1,26 @@ +alabaster==0.7.13 +Babel==2.13.0 +certifi==2023.7.22 +charset-normalizer==3.3.0 +docutils==0.18.1 +idna==3.4 +imagesize==1.4.1 +importlib-metadata==6.8.0 +Jinja2==3.1.2 +MarkupSafe==2.1.3 +packaging==23.2 +Pygments==2.16.1 +pytz==2023.3.post1 +requests==2.31.0 +snowballstemmer==2.2.0 +Sphinx==7.1.2 +sphinx-rtd-theme==1.3.0 +sphinxcontrib-applehelp==1.0.4 +sphinxcontrib-devhelp==1.0.2 +sphinxcontrib-htmlhelp==2.0.1 +sphinxcontrib-jquery==4.1 +sphinxcontrib-jsmath==1.0.1 +sphinxcontrib-qthelp==1.0.3 +sphinxcontrib-serializinghtml==1.1.5 +urllib3==2.0.6 +zipp==3.17.0 From cc3bd5c4bbfd1dd3f68ef0509b3c8ee7bfc887ff Mon Sep 17 00:00:00 2001 From: CJ Green <44074998+okaycj@users.noreply.github.com> Date: Wed, 25 Oct 2023 12:17:20 -0400 Subject: [PATCH 4/4] Force node version to be 12 (#347) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index aace7e5e..6f3524f3 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "url": "https://github.com/lookit/ember-lookit-frameplayer.git" }, "engines": { - "node": ">=8" + "node": ">=12 <13" }, "author": "", "license": "MIT", @@ -99,4 +99,4 @@ "node": true } } -} +} \ No newline at end of file