8000 Comparing v0.33.2...v0.34.0 · sktime/sktime · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sktime/sktime
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.33.2
Choose a base ref
...
head repository: sktime/sktime
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.34.0
Choose a head ref
  • 15 commits
  • 48 files changed
  • 2 contributors

Commits on Oct 18, 2024

  1. [MNT] [Dependabot](deps): Update numpy requirement from <2.1,>=1.21 t…

    …o >=1.21,<2.2 (#7103)
    
    Updates the requirements on [numpy](https://github.com/numpy/numpy) to
    permit the latest version.
    dependabot[bot] authored Oct 18, 2024
    10000 Configuration menu
    Copy the full SHA
    b3afe1f View commit details
    Browse the repository at this point in the history
  2. [MNT] [Dependabot](deps): Update scikit-base requirement from <0.9.0,…

    …>=0.6.1 to >=0.6.1,<0.12.0 (#7238)
    
    Updates the requirements on
    [scikit-base](https://github.com/sktime/skbase) to permit the latest
    version.
    dependabot[bot] authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    c1889e6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9db1be4 View commit details
    Browse the repository at this point in the history
  4. [MNT] add skchange to extras (#7298)

    This PR adds `skchange` to soft dependency sets:
    
    * `all_extras`
    * `all_extras_pandas2`
    * `annotation`
    
    This PR also:
    
    * removes `skchange` from the `binder` dependency set
    * adds a new soft dependency set `detection` which is identical to
    `annotation`.
    fkiraly authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    a1ed783 View commit details
    Browse the repository at this point in the history
  5. [ENH] deduplicate sktime and skbase BaseEstimator (#7213)

    This PR removes a leftover duplication from the `sktime`-to-`skbase`
    refactor - the content of the `sktime` `BaseEstimator` class.
    
    I have manually gone through the code step-by-step and verified
    equivalence.
    
    The only changes/differences were:
    
    * setting the `GET_FITTED_PARAMS_NESTING` attribute
    * changes in docstring formatting that were applied in `sktime` but not
    in `skbase` - I have moved these to a new PR in `skbase`,
    sktime/skbase#370
    * `skbase` hase a safe "get fitted params" subroutine implemented, this
    is an improvemnet above `sktime` so does not need to be removed
    
    As a side issue, the `NotFittedError` in `sktime.exceptions` also needed
    to be replaced by the `skbase` one, to ensure tests and user code does
    not fail (due to different class identitites of two `NotFittedError`-s).
    fkiraly authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    20055d1 View commit details
    Browse the repository at this point in the history
  6. [MNT] disable numpy<2 bound for prophet (#6740)

    Reverts #6721 and removes `prophet` from the list of not
    `numpy` compatible packages.
    
    Should be merged only if tests pass, indicating that `prophet` is
    compatible with `numpy 2`.
    fkiraly authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    0506af2 View commit details
    Browse the repository at this point in the history
  7. [MNT] 0.34.0 deprecations and change actions (#7302)

    Carries out deprecations and change actions scheduled for 0.34.0:
    
    * remove internal `self.task` and `self.learning_type` from
    `BaseSeriesAnnotator`
    * remove python 3.8 EOL warnings, as python 3.8 has now reached EOL
    * bump deprecation/change checks scheduled for 0.33.0 to 0.34.0
    fkiraly authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    3c2e61c View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2024

  1. [MNT] [Dependabot](deps): Update holidays requirement from <0.55,>=0.…

    …29 to >=0.29,<0.59 (#7308)
    
    Updates the requirements on
    [holidays](https://github.com/vacanza/holidays) to permit the latest
    version.
    dependabot[bot] authored Oct 19, 2024
    Configuration menu
    Copy the full SHA
    800fcce View commit details
    Browse the repository at this point in the history
  2. [MNT] [Dependabot](deps): Update sphinx-issues requirement from <5.0.…

    …0 to <6.0.0 (#7307)
    
    Updates the requirements on
    [sphinx-issues](https://github.com/sloria/sphinx-issues) to permit the
    latest version.
    dependabot[bot] authored Oct 19, 2024
    Configuration menu
    Copy the full SHA
    8505dfb View commit details
    Browse the repository at this point in the history
  3. [MNT] python 3.13 support in pyproject.toml and CI (#7198)

    This PR is an upgrade of `pyproject.toml` to allow python 3.13.
    
    Soft dependencies are all conditioned on python < 3.13, this can be
    relaxed as soft dependencies start supporting python 3.13.
    
    This also adds 3.13 in the CI.
    
    For release with `sktime 0.34.0`, not to be merged until python 3.13 is
    released and compatibility is tested.
    fkiraly authored Oct 19, 2024
    Configuration menu
    Copy the full SHA
    3c87e44 View commit details
    Browse the repository at this point in the history
  4. [DOC] replace documentation references to "annotation" with "detectio…

    …n" (#7299)
    
    This PR replaces all documentation (non-code, non-docstring) references
    to "annotation" with the more commonly used word "detection", in line
    with #7295.
    
    This does not touch code or module structure, and does the following:
    
    * change references in readme and API reference
    * rename API reference page `annotation` to `detection`
    * rename extension template `annotation` to `detection`
    * ensuring that links are still valid after the rename
    fkiraly authored Oct 19, 2024
    Configuration menu
    Copy the full SHA
    613859b View commit details
    Browse the repository at this point in the history
  5. [MNT] prepare rename annotation module to detection - mapped impo…

    …rts (#7294)
    
    This PR prepares a rename of the `annotation` module to `detection`.
    
    Carries out step 1 of #7295
    fkiraly authored Oct 19, 2024
    Configuration menu
    Copy the full SHA
    3a65eab View commit details
    Browse the repository at this point in the history
  6. [DOC] change imports in detection tutorial to detection module (#7306)

    This PR changes imports in the detection tutorial to the `detection`
    module, from `annotation`.
    
    Requires #7294.
    fkiraly authored Oct 19, 2024
    Configuration menu
    Copy the full SHA
    bc7c0c6 View commit details
    Browse the repository at this point in the history
  7. [MNT] insta-release action for 0.34.0 (#7312)

    Instant release action for 0.34.0.
    fkiraly authored Oct 19, 2024
    Configuration menu
    Copy the full SHA
    96139c6 View commit details
    Browse the repository at this point in the history
  8. Release 0.34.0 (#7311)

    Release PR for 0.34.0
    
    * version number bump
    * changelog
    fkiraly authored Oct 19, 2024
    Configuration menu
    Copy the full SHA
    f69885d View commit details
    Browse the repository at this point in the history
Loading
0