Skip to content

Commit 9705705

Browse files
author
SamoraHunter
committed
docs build changes, relaxed pandas and polars requirements.
1 parent bd389f4 commit 9705705

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
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: |

pyproject.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ classifiers = [
2222
# Core runtime dependencies for the project
2323
dependencies = [
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]

0 commit comments

Comments
 (0)