Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
Signed-off-by: Merel Theisen <[email protected]>
  • Loading branch information
merelcht authored May 21, 2024
2 parents 87bb070 + 4f41b5b commit d962aba
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion kedro-datasets/.readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build:
jobs:
pre_install:
- python -m pip install "uv==0.1.13"
- UV_HTTP_TIMEOUT=1000 uv pip install --system --upgrade sphinx readthedocs-sphinx-ext "kedro-datasets[docs,test] @ ./kedro-datasets"
- UV_HTTP_TIMEOUT=1000 uv pip install --system --upgrade sphinx readthedocs-sphinx-ext "kedro-datasets[docs,test,experimental] @ ./kedro-datasets"
- uv pip freeze
pre_build:
- python -m sphinx -WETan -j auto -D language=en -b linkcheck -d kedro-datasets/_build/doctrees kedro-datasets/docs/source kedro-datasets/_build/linkcheck
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
kedro_datasets_experimental
==============
===========================

.. rubric:: Description

Expand All @@ -11,4 +11,4 @@ kedro_datasets_experimental
:toctree:
:template: autosummary/class.rst

kedro_datasets_experimental.xarray.GeoTiffDataset
kedro_datasets_experimental.xarray.GeoTiffDataset
1 change: 1 addition & 0 deletions kedro-datasets/docs/source/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Browse the complete list of datasets:
:recursive:
kedro_datasets
kedro_datasets_experimental
```

# Indices and tables
Expand Down
5 changes: 3 additions & 2 deletions kedro-datasets/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ test = [
"matplotlib>=3.0.3, <3.4; python_version < '3.10'", # 3.4.0 breaks holoviews
"matplotlib>=3.5, <3.6; python_version >= '3.10'",
"memory_profiler>=0.50.0, <1.0",
"mypy~=1.0",
"moto==5.0.0",
"mypy~=1.0",
"networkx~=2.4",
Expand Down Expand Up @@ -261,10 +260,12 @@ test = [
"types-tabulate",
]

# Experimental dataset requirements
experimental = ["rioxarray>=0.15.0"]

# All requirements
all = ["kedro-datasets[test,docs]"]


[project.urls]
Source = "https://github.com/kedro-org/kedro-plugins/tree/main/kedro-datasets"
Documentation = "https://docs.kedro.org"
Expand Down
2 changes: 1 addition & 1 deletion kedro-docker/features/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def before_all(context):
# Temporarily pin pip to fix https://github.com/jazzband/pip-tools/issues/1503
# This can be removed when Kedro 0.17.6 is released, because pip-tools is upgraded
# for that version.
"pip>=21.2,<23.2",
"pip>=21.2",
"setuptools>=38.0",
"wheel",
".",
Expand Down
2 changes: 1 addition & 1 deletion kedro-docker/kedro_docker/template/Dockerfile.simple
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM $BASE_IMAGE as runtime-environment

# install project requirements
COPY requirements.txt /tmp/requirements.txt
RUN python -m pip install -U "pip>=21.2,<23.2"
RUN python -m pip install -U "pip>=21.2"
RUN pip install --no-cache-dir -r /tmp/requirements.txt && rm -f /tmp/requirements.txt

# add kedro user
Expand Down
2 changes: 1 addition & 1 deletion kedro-docker/kedro_docker/template/Dockerfile.spark
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apt-get install -y procps default-jre-headless && rm -rf /var/lib/apt/lists/*

# install project requirements
COPY requirements.txt /tmp/requirements.txt
RUN python -m pip install -U "pip>=21.2,<23.2"
RUN python -m pip install -U "pip>=21.2"
RUN pip install --no-cache-dir -r /tmp/requirements.txt && rm -f /tmp/requirements.txt

# add kedro user
Expand Down

0 comments on commit d962aba

Please sign in to comment.