Closed jjmaldonis closed 6 days ago
The changes involve an update to the setup.py
file, specifically modifying the install_requires
section. The version constraint for the websockets
package has been changed from websockets>=12.0
to websockets>=12.0,<14.0
, which restricts the installation to versions of the package that are greater than or equal to 12.0 but less than 14.0.
File | Change Summary |
---|---|
setup.py | Updated install_requires for websockets from websockets>=12.0 to websockets>=12.0,<14.0 |
sequenceDiagram
participant User
participant Installer
participant PackageRepo
User->>Installer: Install package
Installer->>PackageRepo: Fetch websockets>=12.0,<14.0
PackageRepo-->>Installer: Return compatible version
Installer-->>User: Package installed
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Proposed changes
Users who install or upgrade this SDK are affected by #483. This PR pins the websocket dependency to v12 or v13, both of which are compatible with the current codebase.
Types of changes
What types of changes does your code introduce to the community Python SDK? Put an
x
in the boxes that applyChecklist
Put an
x
in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code.Further comments
Summary by CodeRabbit
websockets
package to ensure compatibility and stability.