Skip to content

deps(deps): bump pytgcalls from 3.0.0.dev21 to 3.0.0.dev24#36

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pip/pytgcalls-3.0.0.dev24
Open

deps(deps): bump pytgcalls from 3.0.0.dev21 to 3.0.0.dev24#36
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pip/pytgcalls-3.0.0.dev24

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Jun 16, 2025

Bumps pytgcalls from 3.0.0.dev21 to 3.0.0.dev24.

Release notes

Sourced from pytgcalls's releases.

pytgcalls v2.1.0. New event: PARTICIPANT_LIST_UPDATED

Ways to register own callback

1:

async def participants_are_updated(group_call, participants):
    print(f'Updated participant list: {participants}')
group_call.on_participant_list_updated(participants_are_updated)

2:

@group_call.on_participant_list_updated
async def participants_are_updated(group_call, participants):
    print(f'Updated participant list: {participants}')

3:

async def participants_are_updated(group_call, participants):
        print(f'Updated participant list: {participants}')
group_call.add_handler(participants_are_updated, GroupCallAction.PARTICIPANT_LIST_UPDATED)

Output

Telethon:

Updated participant list: [<GroupCallParticipantWrapper>({'peer': <telethon.tl.types.PeerChannel object at 0x10eb4a5b0>, 'date': datetime.datetime(2021, 8, 22, 15, 35, 51, tzinfo=datetime.timezone.utc), 'source': 1382476690, 'muted': True, 'left': False, 'can_self_unmute': True, 'just_joined': False, 'versioned': False, 'min': False, 'muted_by_you': False, 'volume_by_admin': True, 'is_self': False, 'video_joined': False, 'active_date': None, 'volume': None, 'about': '🧑🏻\u200d💻DEV. More info inside...', 'raise_hand_rating': None})]

Pyrogram:

Updated participant list: [<GroupCallParticipantWrapper>({'peer': pyrogram.raw.types.PeerChannel(channel_id=1359572958), 'date': 1629646551, 'source': 1382476690, 'muted': True, 'left': False, 'can_self_unmute': True, 'just_joined': False, 'versioned': False, 'min': False, 'muted_by_you': False, 'volume_by_admin': True, 'is_self': False, 'video_joined': None, 'active_date': None, 'volume': None, 'about': '🧑🏻\u200d💻DEV. More info inside...', 'raise_hand_rating': None})]

tgcalls v2.0.0. Wheels for Windows, smart pointers, updated tgcalls with webrtc and more

Introduce

You are able to install library on Windows without WSL now. The dependencies have been updated to the latest versions. The updated Telegram tgcalls now has the ability to work with group video calls. Wait for the next major update. A lot of work has been done in this update to improve communication between Python and C++ tgcalls via binding. Fixed all problems with pointers. C++ native instances are now fully deconstructed correctly.

Major

  • There is no RuntimeError now. New exceptions: PytgcallsError, CallBeforeStartError, NotConnectedError, GroupCallNotFoundError;
  • set_is_mute method is async now. You need to call it with await statement;
  • isGroupCallStarted native method was renamed to isGroupCallNativeCreated.

Minor

... (truncated)

Commits

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)

Summary by Sourcery

Build:

  • Update pytgcalls version in requirements.txt to 3.0.0.dev24

Bumps [pytgcalls](https://github.com/MarshalX/tgcalls) from 3.0.0.dev21 to 3.0.0.dev24.
- [Release notes](https://github.com/MarshalX/tgcalls/releases)
- [Commits](https://github.com/MarshalX/tgcalls/commits)

---
updated-dependencies:
- dependency-name: pytgcalls
  dependency-version: 3.0.0.dev24
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jun 16, 2025
@sourcery-ai
Copy link
Copy Markdown

sourcery-ai Bot commented Jun 16, 2025

Reviewer's Guide

This PR updates the pytgcalls dependency in requirements.txt to version 3.0.0.dev24, pulling in the latest upstream fixes and features while leaving other configurations unchanged.

Class diagram for updated pytgcalls event and error handling

classDiagram
    class GroupCall {
        +on_participant_list_updated(callback)
        +add_handler(callback, action)
        +set_is_mute() async
        +isGroupCallNativeCreated()
    }
    class GroupCallParticipantWrapper {
        peer
        date
        source
        muted
        left
        can_self_unmute
        just_joined
        versioned
        min
        muted_by_you
        volume_by_admin
        is_self
        video_joined
        active_date
        volume
        about
        raise_hand_rating
    }
    class PytgcallsError
    class CallBeforeStartError
    class NotConnectedError
    class GroupCallNotFoundError
    PytgcallsError <|-- CallBeforeStartError
    PytgcallsError <|-- NotConnectedError
    PytgcallsError <|-- GroupCallNotFoundError
    GroupCall --> GroupCallParticipantWrapper : updates participant list
Loading

File-Level Changes

Change Details Files
Dependency version bump for pytgcalls
  • Replaced pytgcalls==3.0.0.dev21 with pytgcalls==3.0.0.dev24 in requirements.txt
requirements.txt

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants