File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 6565 cache : ' pip'
6666
6767 - name : Install dependencies
68- run : pip install -e .[docs]
68+ run : pip install .[docs]
6969
7070 - name : Verify PyTorch installation
7171 run : |
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ classifiers = [
2222# Core runtime dependencies for the project
2323dependencies = [
2424 # Core data and ML libraries
25- " pandas==2.0.3" ,
26- " polars==1.9.0" ,
25+ " pandas" , # ==2.0.3
26+ " polars" , # ==1.9.0
2727 " numpy==1.26.4" ,
2828 " scikit-learn==1.5.2" ,
2929 " imbalanced-learn==0.12.4" ,
@@ -63,6 +63,10 @@ dependencies = [
6363 " pyarrow==18.1.0" ,
6464 " pyyaml==6.0.2" ,
6565 " lxml==5.3.0" ,
66+
67+ # Dev
68+ " black" ,
69+ " ruff"
6670]
6771
6872[project .urls ]
@@ -85,6 +89,10 @@ ts = [
8589 " pmdarima==2.0.3" ,
8690 " gluonts==0.13.2" ,
8791]
92+ docs = [
93+ " sphinx" ,
94+ " sphinx-rtd-theme" ,
95+ ]
8896
8997# Add this section to fix the package discovery error
9098[tool .setuptools .packages .find ]
You can’t perform that action at this time.
0 commit comments