Spaces:
Running
Running
chore: update HF Space to Python 3.12, unpin gradio
Browse files- hf_space/Dockerfile: 3.10-slim → 3.12-slim to match dev env and Lambda
- hf_space/requirements.txt: remove gradio version pin
- environment.yml: remove gradio version pin
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Dockerfile +1 -1
- requirements.txt +1 -1
Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
FROM python:3.
|
| 2 |
|
| 3 |
RUN apt-get update && apt-get install -y \
|
| 4 |
build-essential \
|
|
|
|
| 1 |
+
FROM python:3.12-slim
|
| 2 |
|
| 3 |
RUN apt-get update && apt-get install -y \
|
| 4 |
build-essential \
|
requirements.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
gradio
|
| 2 |
datasets
|
| 3 |
huggingface_hub
|
| 4 |
gradio-leaderboard
|
|
|
|
| 1 |
+
gradio
|
| 2 |
datasets
|
| 3 |
huggingface_hub
|
| 4 |
gradio-leaderboard
|