Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove pyarrow dependency for polars #705

Merged
merged 2 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ dependencies:
- polars
- supersmoother
- tqdm
- utilsforecast>=0.0.14
- utilsforecast>=0.0.17
2 changes: 1 addition & 1 deletion dev/local_environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ dependencies:
- polars
- supersmoother
- tqdm
- utilsforecast>=0.0.14
- utilsforecast>=0.0.17
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@
"sf = StatsForecast(\n",
" df=Y_df, \n",
" models=models,\n",
" freq='H', \n",
" freq=1, \n",
" n_jobs=-1,\n",
" fallback_model = SeasonalNaive(season_length=7),\n",
" verbose=True\n",
Expand Down
285 changes: 103 additions & 182 deletions nbs/src/core/core.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ language = English
custom_sidebar = True
license = apache2
status = 2
requirements = numba>=0.55.0 numpy>=1.21.6 pandas>=1.3.5 scipy>=1.7.3 statsmodels>=0.13.2 tqdm fugue>=0.8.1 utilsforecast>=0.0.14
polars_requirements = polars pyarrow
requirements = numba>=0.55.0 numpy>=1.21.6 pandas>=1.3.5 scipy>=1.7.3 statsmodels>=0.13.2 tqdm fugue>=0.8.1 utilsforecast>=0.0.17
polars_requirements = polars
ray_requirements = fugue[ray]>=0.8.1 protobuf>=3.15.3,<4.0.0
dask_requirements = fugue[dask]>=0.8.1
spark_requirements = fugue[spark]>=0.8.1
Expand Down
1 change: 0 additions & 1 deletion statsforecast/_modidx.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@
'statsforecast/core.py'),
'statsforecast.core._StatsForecast.save': ( 'src/core/core.html#_statsforecast.save',
'statsforecast/core.py'),
'statsforecast.core._cv_dates': ('src/core/core.html#_cv_dates', 'statsforecast/core.py'),
'statsforecast.core._get_n_jobs': ('src/core/core.html#_get_n_jobs', 'statsforecast/core.py'),
'statsforecast.core._maybe_warn_sort_df': ( 'src/core/core.html#_maybe_warn_sort_df',
'statsforecast/core.py'),
Expand Down
Loading
Loading