From 5712ad60bdf21ed8b6fc818a824b904ba74b4d20 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Mon, 18 Mar 2024 20:16:45 -0400 Subject: [PATCH 1/3] Fixup intersphinx_mapping for python --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 38b9af5..59468d7 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -115,7 +115,7 @@ todo_include_todos = True # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'https://docs.python.org/': None} +intersphinx_mapping = {'python': ('https://docs.python.org/3', None)} # -- Options for HTML output ---------------------------------------------- From 4e57af1d718de9d70124aefd17a73d6959aa997e Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Mon, 18 Mar 2024 20:20:08 -0400 Subject: [PATCH 2/3] copied readthedocs from -next --- readthedocs.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 readthedocs.yml diff --git a/readthedocs.yml b/readthedocs.yml new file mode 100644 index 0000000..c90e6e0 --- /dev/null +++ b/readthedocs.yml @@ -0,0 +1,26 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-20.04 + tools: + python: "3.9" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/source/conf.py + + +formats: all + +# Optionally declare the Python requirements required to build your docs +python: + install: + - path: . + method: pip + - requirements: requirements-devel.txt From 5c2e41c2e284131500fa2ed686c09043cb836687 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Mon, 18 Mar 2024 20:20:56 -0400 Subject: [PATCH 3/3] [DATALAD RUNCMD] run codespell throughout fixing typos automagically === Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ --- datalad_deprecated/metadata/metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datalad_deprecated/metadata/metadata.py b/datalad_deprecated/metadata/metadata.py index 9c5552c..d84ea4f 100644 --- a/datalad_deprecated/metadata/metadata.py +++ b/datalad_deprecated/metadata/metadata.py @@ -670,7 +670,7 @@ def _get_metadata(ds, types, global_meta=None, content_meta=None, paths=None): # important: we want to have a stable order regarding # the unique values (a list). we cannot guarantee the # same order of discovery, hence even when not using a - # set above we would still need sorting. the callenge + # set above we would still need sorting. the challenge # is that any value can be an arbitrarily complex nested # beast # we also want to have each unique value set always come