-
Notifications
You must be signed in to change notification settings - Fork 2
Update boto3 dependency range #90
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
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughThe update introduces two main changes. First, the module version is incremented from 1.0.0 to 1.0.1 in the version file, reflecting a minor revision. Second, the dependency constraint for the boto3 package in the setup configuration is modified. The allowable boto3 versions have been expanded from versions below 1.35.96 to versions below 2.0.0, while still requiring a minimum version of 1.34.106. 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #90 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 14 14
Lines 241 241
Branches 22 22
=========================================
Hits 241 241
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Description
This PR updates the boto3 version constraint in setup.py from:
boto3>=1.34.106,<1.35.96to
boto3>=1.34.106,<2.0.0This change ensures compatibility with future minor and patch releases of boto3 while still preventing potential breaking changes introduced in major versions (2.x).
Summary by CodeRabbit