[AIRFLOW-XXX] Use Py3.7 on readthedocs
Previous builds were failing with "Command killed due to excessive
memory consumption".
This updated the RTD config, removes the un-needed extras (which we have
mocked for a while now), switches to building on Py3.7. This seems to
help the docs build again
diff --git a/.readthedocs.yml b/.readthedocs.yml
index c6a4da8..8977b2f 100644
--- a/.readthedocs.yml
+++ b/.readthedocs.yml
@@ -16,10 +16,13 @@
# specific language governing permissions and limitations
# under the License.
+version: 2
+formats: []
python:
- pip_install: true
- extra_requirements:
- - doc
- - docker
- - gcp_api
- - emr
+ version: 3.7
+ install:
+ - method: pip
+ path: .
+ extra_requirements:
+ - doc
+ system_packages: true