-
Notifications
You must be signed in to change notification settings - Fork 276
chore: move dependencies to pyproject.toml #1360
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
| rm -rf ./slack_bolt.egg-info | ||
|
|
||
| pip install -U pip && \ | ||
| pip install twine build && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor improvements for consistency
| - package-ecosystem: "npm" | ||
| directory: "/docs" | ||
| schedule: | ||
| interval: "monthly" | ||
| groups: | ||
| docusaurus: | ||
| patterns: | ||
| - "@docusaurus/*" | ||
| react: | ||
| patterns: | ||
| - "react" | ||
| - "react-dom" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cleaning this up because we don't need it anymore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📚 praise: Thanks for catching this!
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1360 +/- ##
=======================================
Coverage 91.00% 91.00%
=======================================
Files 222 222
Lines 7512 7512
=======================================
Hits 6836 6836
Misses 676 676 ☔ View full report in Codecov by Sentry. |
zimeg
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@WilliamBergamin LGTM! This is such a nice change to keep things fresh 🚢 🫧
| - package-ecosystem: "npm" | ||
| directory: "/docs" | ||
| schedule: | ||
| interval: "monthly" | ||
| groups: | ||
| docusaurus: | ||
| patterns: | ||
| - "@docusaurus/*" | ||
| react: | ||
| patterns: | ||
| - "react" | ||
| - "react-dom" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📚 praise: Thanks for catching this!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🫡 praise: Farewell to requirements.txt indeed.
Summary
Python 3.6 did not support the
pip install .command which installs the dependencies of the project, this is why we defined arequirements.txtfile at the top level. Now that this project does not support python 3.6 we can get ride ofrequirements.txtTesting
CI passes
Category
slack_bolt.Appand/or its core componentsslack_bolt.async_app.AsyncAppand/or its core componentsslack_bolt.adapter/docsRequirements
Please read the Contributing guidelines and Code of Conduct before creating this issue or pull request. By submitting, you are agreeing to those rules.
./scripts/install_all_and_run_tests.shafter making the changes.