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

build(deps): bump kloppy from 3.15.0 to 3.16.0 #871

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 18, 2024

Bumps kloppy from 3.15.0 to 3.16.0.

Release notes

Sourced from kloppy's releases.

v3.16.0

✨ Highlights ✨

Load DFL Open Data by @​UnravelSports in PySport/kloppy#365

We've added support for loading a new public dataset! The dataset contains seven full matches of raw event and position data collected by Sportec Solutions from the German Men's Bundesliga season 2022/23 first and second division.

from kloppy import sportec
event_dataset = sportec.load_open_event_data(match_id="J03WMX")
tracking_dataset = sportec.load_open_tracking_data(match_id="J03WMX")

For more info about the dataset, see

Bassek, M., Weber, H., Rein, R., & Memmert, D. (2024). "An integrated dataset of synchronized spatiotemporal and event data in elite soccer." In Submission.

Standardized player positions by @​DriesDeprest in PySport/kloppy#334

Instead of relying on provider-specific player positions, kloppy now implements a standardized PositionType.

>>> from kloppy import statsbomb
>>> event_dataset = statsbomb.load_open_data(match_id="15946")
>>> event = event_dataset.get_event_by_id("549567bd-36de-4ac8-b8dc-6b5d3f1e4be8")
>>> event.player.starting_position
<PositionType.LeftMidfield: ('Left Midfield', 'LM', 'WideMidfield')>

The positions are ordered hierarchically.

>>> from kloppy.domain import PositionType
>>> print(PositionType.LeftBack.parent)
FullBack
>>> print(PositionType.Defender.is_subtype_of(PositionType.Defender))
True
>>> print(PositionType.LeftCenterBack.is_subtype_of(PositionType.Defender))
True
>>> print(PositionType.LeftBack.is_subtype_of(PositionType.Midfielder))
False
>>> print(PositionType.LeftCenterBack)
Left Center Back
>>> print(PositionType.LeftCenterBack.code)
LCB

Team formation changes by @​DriesDeprest in PySport/kloppy#332

... (truncated)

Commits
  • 2bb835b Bump version: 3.15.0 → 3.16.0
  • edee570 refactor: remove numpy dependency from SkillCorner (#375)
  • b0f56e1 fix: common bug in parsing of UTC datetimes (#373)
  • 45ab84c feat(sportec): add referees to metadata; fix(sportec): parsing tracking data ...
  • e359a99 fix(Stats Perform): Ignore 19/"Player on" events as they are already incorpor...
  • dff0204 feat(Wyscout V3): estimate shot result coordinates (#320)
  • 7d3c458 fix(Opta): fix deflected pass end coordinates and result (#311)
  • 9a4bd13 feat(Sportec): support loading DFL Open Data (#365)
  • f6db15f feat(Wyscout V3): add position information for players (#366)
  • ef2c398 Merge pull request #357 from my-game-plan/bugfix/statsperform-tracking-refere...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Dependencies python Pull requests that update Python code labels Dec 18, 2024
Bumps [kloppy](https://github.com/PySport/kloppy) from 3.15.0 to 3.16.0.
- [Release notes](https://github.com/PySport/kloppy/releases)
- [Changelog](https://github.com/PySport/kloppy/blob/master/docs/changelog.md)
- [Commits](PySport/kloppy@v3.15.0...v3.16.0)

---
updated-dependencies:
- dependency-name: kloppy
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/kloppy-3.16.0 branch from 4b70389 to e55bdcd Compare January 3, 2025 10:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Dependencies python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants