KSvend Claude Happy commited on
Commit
70f43a7
Β·
1 Parent(s): a085e8e

chore: add planetary-computer dependency for nightlights indicator

Browse files

The nightlights indicator needs planetary_computer.sign_inplace to
authenticate STAC asset requests to Microsoft Planetary Computer.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>

Files changed (2) hide show
  1. Dockerfile +2 -1
  2. pyproject.toml +1 -0
Dockerfile CHANGED
@@ -26,7 +26,8 @@ RUN pip install --no-cache-dir --prefer-binary \
26
  "pystac-client>=0.7.0" \
27
  "stackstac>=0.5.0" \
28
  "reportlab>=4.1.0" \
29
- "tqdm>=4.66.0"
 
30
 
31
  # ── Stage 2: runtime (no compiler, smaller image) ───────────────
32
  FROM python:3.11-slim
 
26
  "pystac-client>=0.7.0" \
27
  "stackstac>=0.5.0" \
28
  "reportlab>=4.1.0" \
29
+ "tqdm>=4.66.0" \
30
+ "planetary-computer>=1.0.0"
31
 
32
  # ── Stage 2: runtime (no compiler, smaller image) ───────────────
33
  FROM python:3.11-slim
pyproject.toml CHANGED
@@ -22,6 +22,7 @@ dependencies = [
22
  "reportlab>=4.1.0",
23
  "scipy>=1.12.0",
24
  "tqdm>=4.66.0",
 
25
  ]
26
 
27
  [project.optional-dependencies]
 
22
  "reportlab>=4.1.0",
23
  "scipy>=1.12.0",
24
  "tqdm>=4.66.0",
25
+ "planetary-computer>=1.0.0",
26
  ]
27
 
28
  [project.optional-dependencies]