Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: upgrade rtd build env #157

Merged
merged 2 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.8"
python: "3.10"

python:
install:
Expand Down
5 changes: 5 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
from odc.stac._version import __version__ as _odc_stac_version
from scripts import notebook_hash

# isort: off
# extra imports to check env
import odc.stac.bench
import odc.stac.eo3


# Workaround for https://github.com/agronholm/sphinx-autodoc-typehints/issues/123
# When this https://github.com/agronholm/sphinx-autodoc-typehints/pull/153
Expand Down
108 changes: 1 addition & 107 deletions docs/rtd-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,107 +1 @@
affine==2.3.0
alabaster==0.7.12
argon2-cffi==21.1.0
attrs==21.2.0
Babel==2.9.1
backcall==0.2.0
bleach==4.1.0
cachetools==4.2.2
certifi==2021.5.30
cffi==1.14.6
cftime==1.5.0
charset-normalizer==2.0.4
click==8.0.1
click-plugins==1.1.1
cligj==0.7.2
cloudpickle==1.6.0
dask==2021.9.0
datacube==1.8.5
debugpy==1.4.3
decorator==5.1.0
defusedxml==0.7.1
distributed==2021.9.0
docutils==0.16
entrypoints==0.3
fsspec==2021.8.1
greenlet==1.1.1
HeapDict==1.0.1
idna==3.2
imagesize==1.2.0
ipykernel==6.4.1
ipython==7.27.0
ipython-genutils==0.2.0
ipywidgets==7.6.5
jedi==0.18.0
Jinja2==3.0.1
jsonschema==3.2.0
jupyter-client==7.0.2
jupyter-core==4.7.1
jupyterlab-pygments==0.1.2
jupyterlab-widgets==1.0.2
lark-parser==0.12.0
locket==0.2.1
MarkupSafe==2.0.1
matplotlib-inline==0.1.3
mistune==0.8.4
msgpack==1.0.2
nbclient==0.5.4
nbconvert==6.1.0
nbformat==5.1.3
nbsphinx==0.8.7
nest-asyncio==1.5.1
netCDF4==1.5.7
notebook==6.4.4
numpy==1.21.2
odc-geo==0.3.0
packaging==21.0
pandas==1.3.2
pandocfilters==1.5.0
parso==0.8.2
partd==1.2.0
pexpect==4.8.0
pickleshare==0.7.5
prometheus-client==0.11.0
prompt-toolkit==3.0.20
psutil==5.8.0
psycopg2==2.9.1
ptyprocess==0.7.0
pycparser==2.20
Pygments==2.10.0
pyparsing==2.4.7
pyproj==3.2.0
pyrsistent==0.18.0
pystac==1.1.0
python-dateutil==2.8.2
pytz==2021.1
PyYAML==5.4.1
pyzmq==22.2.1
rasterio==1.3.2
requests==2.26.0
Send2Trash==1.8.0
Shapely==1.7.1
six==1.16.0
snowballstemmer==2.1.0
snuggs==1.4.7
sortedcontainers==2.4.0
Sphinx==4.1.2
sphinx-autodoc-typehints==1.12.0
sphinx-rtd-theme==0.5.2
sphinxcontrib-applehelp==1.0.2
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-htmlhelp==2.0.0
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.5
SQLAlchemy==1.4.23
tblib==1.7.0
terminado==0.12.1
testpath==0.5.0
toolz==0.11.1
tornado==6.1
traitlets==5.1.0
urllib3==1.26.6
wcwidth==0.2.5
webencodings==0.5.1
widgetsnbextension==3.5.1
xarray==0.20.1
zict==2.0.0
.[docs]
2 changes: 1 addition & 1 deletion odc/stac/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""version information only."""

__version__ = "0.3.10a2"
__version__ = "0.3.10rc1"
13 changes: 13 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,19 @@ install_requires =
[options.extras_require]
botocore = botocore

docs =
sphinx
sphinx_rtd_theme
nbsphinx
sphinx-autodoc-typehints
matplotlib-inline
pandas
distributed
datacube
ipython
ipykernel


[options.packages.find]
include =
odc*
Expand Down
Loading