KSvend Claude Happy commited on
Commit Β·
70f43a7
1
Parent(s): a085e8e
chore: add planetary-computer dependency for nightlights indicator
Browse filesThe 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>
- Dockerfile +2 -1
- 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]
|