Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into validate-extras-workflow
Browse files Browse the repository at this point in the history
* origin/main:
  [MNT] skpro as a soft dependency (sktime#5273)
  [DOC] Correct code block formatting for pre-commit install command (sktime#5377)
  [ENH] parallelization backend calls in utility module - part 2, backend parameter passing (sktime#5311)
  [MNT] [Dependabot](deps): Bump stefanzweifel/git-auto-commit-action from 4 to 5 (sktime#5373)
  [MNT] python 3.12 compatibility - replace `distutils` calls with equivalent functionality (sktime#5376)
  [DOC] `sktime` intro notebook (sktime#3793)
  [ENH] Skip unnecessary fit in `ForecastX` if inner `forecaster_y` ignores `X` (sktime#5353)
  [ENH] refactor parallelization backend calls in utility module (sktime#5268)
  [ENH] ARCH model (arch package) Issue sktime#2173 (sktime#5326)
  [ENH] add error message return to `deep_equals` assert in `test_reconstruct_identical`  (sktime#4927)
  [DOC] Added all feature names to docstring for DateTimeFeatures class (sktime#5283)
  [BUG] fix `STLForecaster` tag `ignores-exogenous-X` to be correctly set for composites (sktime#5365)
  [BUG] Fix inconsistent date/time index in `plot_windows` sktime#4919 (sktime#5321)
  • Loading branch information
yarnabrina committed Oct 8, 2023
2 parents 8e81065 + 44561f4 commit 14c26ec
Show file tree
Hide file tree
Showing 28 changed files with 1,966 additions and 198 deletions.
20 changes: 20 additions & 0 deletions .all-contributorsrc
Expand Up @@ -2376,6 +2376,26 @@
"code"
]
},
{
"login": "Vasudeva-bit",
"name": "Vasudeva Kilaru",
"avatar_url": "https://avatars.githubusercontent.com/u/70791259?v=4",
"profile": "https://github.com/Vasudeva-bit",
"contributions": [
"code",
"doc"
]
},
{
"login": "geronimos",
"name": "Geronimo Bergk",
"avatar_url": "https://avatars.githubusercontent.com/u/29955288?s=96&v=4",
"profile": "https://github.com/geronimos",
"contributions": [
"bug",
"code"
]
},
{
"login": "julnow",
"name": "Julian Nowak",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_contributors.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
run: npx all-contributors generate
- name: commit-and-push
id: candp
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: '[AUTOMATED] update CONTRIBUTORS.md'
file_pattern: 'CONTRIBUTORS.md'
Expand Down
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Expand Up @@ -38,6 +38,7 @@ sktime/classification/sklearn/_continuous_interval_tree.py @MatthewMiddlehurst
sktime/classification/sklearn/_rotation_forest.py @MatthewMiddlehurst

sktime/forecasting/adapters/_hcrystalball.py @MichalChromcak
sktime/forecasting/arch/_uarch.py @Vasudeva-bit
sktime/forecasting/arima.py @HYang1996
sktime/forecasting/base/adapters/_statsforecast.py @FedericoGarza
sktime/forecasting/bats.py @aiwalter
Expand Down
46 changes: 24 additions & 22 deletions CONTRIBUTORS.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/source/api_reference/forecasting.rst
Expand Up @@ -282,7 +282,7 @@ ARCH models

StatsForecastARCH
StatsForecastGARCH

ARCH

Structural time series models
-----------------------------
Expand Down
5 changes: 3 additions & 2 deletions docs/source/developer_guide/continuous_integration.rst
Expand Up @@ -66,8 +66,9 @@ We recommend that you also set this up locally as it will ensure that you never
These checks run automatically before you make a new commit.
To setup, simply navigate to the sktime folder and install our pre-commit configuration:

::
pre-commit install
.. code:: bash
pre-commit install
pre-commit should now automatically run anything you make a commit! Please let us know if you encounter any issues getting this setup.

Expand Down

0 comments on commit 14c26ec

Please sign in to comment.