-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
53 additions
and
57 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 OS, Python version and other tools you might need | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.12" | ||
|
||
# Build documentation in the "docs/" directory with Sphinx | ||
sphinx: | ||
configuration: docs/source/conf.py | ||
|
||
# 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: | ||
- method: pip | ||
path: . | ||
extra_requirements: | ||
- [docs, tests] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,3 @@ | ||
{ | ||
"latest": "https://xarray-spatial.org/", | ||
"0.3.7": "https://xarray-spatial.org/v0.3.7/index.html", | ||
"0.3.6": "https://xarray-spatial.org/v0.3.6/index.html", | ||
"0.3.5": "https://xarray-spatial.org/v0.3.5/index.html", | ||
"0.3.4": "https://xarray-spatial.org/v0.3.4/index.html", | ||
"0.3.3": "https://xarray-spatial.org/v0.3.3/index.html", | ||
"0.3.2": "https://xarray-spatial.org/v0.3.2/index.html", | ||
"0.3.1": "https://xarray-spatial.org/v0.3.1/index.html", | ||
"0.3.0": "https://xarray-spatial.org/v0.3.0/index.html", | ||
"0.2.9": "https://xarray-spatial.org/v0.2.9/index.html", | ||
"0.2.8": "https://xarray-spatial.org/v0.2.8/index.html", | ||
"0.2.7": "https://xarray-spatial.org/v0.2.7/index.html", | ||
"0.2.6": "https://xarray-spatial.org/v0.2.6/index.html", | ||
"0.2.5": "https://xarray-spatial.org/v0.2.5/index.html", | ||
"0.2.4": "https://xarray-spatial.org/v0.2.4/index.html", | ||
"0.2.3": "https://xarray-spatial.org/v0.2.3/index.html", | ||
"0.2.2": "https://xarray-spatial.org/v0.2.2/index.html", | ||
"0.2.1": "https://xarray-spatial.org/v0.2.1/index.html", | ||
"0.2.0": "https://xarray-spatial.org/v0.2.0/index.html" | ||
} | ||
"latest": "https://xarray-spatial.readthedocs.io/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ console_scripts = | |
|
||
[options.extras_require] | ||
doc = | ||
dask[dataframe] | ||
geopandas | ||
Jinja2 >=2.11 | ||
ipykernel | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# file generated by setuptools_scm | ||
# don't change, don't track in version control | ||
TYPE_CHECKING = False | ||
if TYPE_CHECKING: | ||
from typing import Tuple, Union | ||
VERSION_TUPLE = Tuple[Union[int, str], ...] | ||
else: | ||
VERSION_TUPLE = object | ||
|
||
version: str | ||
__version__: str | ||
__version_tuple__: VERSION_TUPLE | ||
version_tuple: VERSION_TUPLE | ||
|
||
__version__ = version = '0.3.8.dev1+g27ab0c8.d20240419' | ||
__version_tuple__ = version_tuple = (0, 3, 8, 'dev1', 'g27ab0c8.d20240419') |