Spaces:
Running
Running
Commit ·
21be874
1
Parent(s): 02870df
fix: upgrade to Python 3.12 for pandas-ta compatibility
Browse files- Dockerfile: python:3.11-slim -> python:3.12-slim
- pandas-ta 0.4.71b0 requires Python >=3.12
- Dockerfile +1 -1
- requirements.txt +1 -1
Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
FROM python:3.
|
| 2 |
|
| 3 |
LABEL maintainer="OMCHOKSI108"
|
| 4 |
LABEL description="ForexDataLake - Production Market Data API"
|
|
|
|
| 1 |
+
FROM python:3.12-slim
|
| 2 |
|
| 3 |
LABEL maintainer="OMCHOKSI108"
|
| 4 |
LABEL description="ForexDataLake - Production Market Data API"
|
requirements.txt
CHANGED
|
@@ -10,7 +10,7 @@ pyarrow==18.1.0
|
|
| 10 |
pandas==2.3.2
|
| 11 |
|
| 12 |
# TA
|
| 13 |
-
|
| 14 |
|
| 15 |
# HF
|
| 16 |
huggingface-hub==0.27.1
|
|
|
|
| 10 |
pandas==2.3.2
|
| 11 |
|
| 12 |
# TA
|
| 13 |
+
pandas_ta==0.4.71b0
|
| 14 |
|
| 15 |
# HF
|
| 16 |
huggingface-hub==0.27.1
|