This document describes tools, tasks and workflow that one needs to be familiar with in order to effectively maintain this project. If you use this package within your own software as is but don't plan on modifying it, this guide is not for you.
We recommend using pyenv for Python runtime management. If you use macOS, follow the following steps:
brew update
brew install pyenvInstall necessary Python runtimes for development/testing. You can rely on GitHub Actions workflows for testing with various major versions. https://github.com/slackapi/bolt-python/tree/main/.github/workflows
$ pyenv install -l | grep -v "-e[conda|stackless|pypy]"
$ pyenv install 3.8.5 # select the latest patch version
$ pyenv local 3.8.5
$ pyenv versions
system
3.7.17
3.13.7
* 3.8.5 (set by /path-to-bolt-python/.python-version)
$ pyenv rehashThen, you can create a new Virtual Environment this way:
python -m venv env_3.8.5
source env_3.8.5/bin/activateIf you make some changes to this SDK, please write corresponding unit tests as much as possible. You can easily run all the tests by running the following script.
If this is your first time to run tests, although it may take a bit long time, running the following script is the easiest.
./scripts/install_all_and_run_tests.shOnce you installed all the required dependencies, you can use the following one.
./scripts/run_tests.shAlso, you can run a single test this way.
./scripts/run_tests.sh tests/scenario_tests/test_app.pyIf you make changes to slack_bolt/adapter/*, please verify if it surely works by running the apps under examples directory.
# Install all optional dependencies
$ pip install -r requirements/adapter.txt
$ pip install -r requirements/adapter_testing.txt
# Set required env variables
$ export SLACK_SIGNING_SECRET=***
$ export SLACK_BOT_TOKEN=xoxb-***
# Standalone apps
$ cd examples/
$ python app.py
$ python async_app.py
# Flask apps
$ cd examples/flask
$ FLASK_APP=app.py FLASK_ENV=development flask run -p 3000
# In another terminal
$ ngrok http 3000 --subdomain {your-domain}If you want to test the package locally you can.
- Build the package locally
- Run
scripts/build_pypi_package.sh
- This will create a
.whlfile in the./distfolder
- Run
- Use the built package
- Example
/dist/slack_bolt-1.2.3-py2.py3-none-any.whlwas created - From anywhere on your machine you can install this package to a project with
pip install <project path>/dist/slack_bolt-1.2.3-py2.py3-none-any.whl
- It is also possible to include
slack_bolt @ file:///<project path>/dist/slack_bolt-1.2.3-py2.py3-none-any.whlin a requirements.txt file
- Example
./scripts/generate_api_docs.shTestPyPI is a separate instance of the Python Package
Index that allows you to try distribution tools and processes without affecting
the real index. This is particularly useful when making changes related to the
package configuration itself, for example, modifications to the pyproject.toml file.
You can deploy this project to TestPyPI using GitHub Actions.
To deploy using GitHub Actions:
- Push your changes to a branch or tag
- Navigate to https://github.com/slackapi/bolt-python/actions/workflows/pypi-release.yml
- Click on "Run workflow"
- Select your branch or tag from the dropdown
- Click "Run workflow" to build and deploy your branch to TestPyPI
Alternatively, you can deploy from your local machine with:
./scripts/deploy_to_test_pypi.shDeploying a new version of this library to PyPI is triggered by publishing a GitHub Release. Before creating a new release, ensure that everything on a stable branch has landed, then run the tests.
- Create the commit for the release
- Use the latest supported Python version. Using a virtual environment is recommended.
- In
slack_bolt/version.pybump the version number in adherence to Semantic Versioning and Developmental Release.- Example: if the current version is
1.2.3, a proper development bump would be1.2.4.dev0 .devwill indicate to pip that this is a Development Release- Note that the
devversion can be bumped in development releases:1.2.4.dev0->1.2.4.dev1
- Example: if the current version is
- Build the docs with
./scripts/generate_api_docs.sh. - Commit with a message including the new version number. For example
1.2.4.dev0& push the commit to a branch where the development release will live (create it if it does not exist)git checkout -b future-releasegit add --all(review files withgit statusbefore committing)git commit -m 'chore(release): version 1.2.4.dev0'git push -u origin future-release
- Create a new GitHub Release
- Navigate to the Releases page.
- Click the "Draft a new release" button.
- Set the "Target" to the feature branch with the development changes.
- Click "Tag: Select tag"
- Input a new tag name manually. The tag name must match the version in
slack_bolt/version.pyprefixed with "v" (e.g., if version is1.2.4.dev0, enterv1.2.4.dev0) - Click the "Create a new tag" button. This won't create your tag immediately.
- Click the "Generate release notes" button.
- The release name should match the tag name!
- Edit the resulting notes to ensure they have decent messaging that is understandable by non-contributors, but each commit should still have its own line.
- Set this release as a pre-release.
- Publish the release by clicking the "Publish release" button!
- Navigate to the release workflow run. You will need to approve the deployment!
- After a few minutes, the corresponding version will be available on https://pypi.org/project/slack-bolt.
- (Slack Internal) Communicate the release internally
Deploying a new version of this library to PyPI is triggered by publishing a GitHub Release.
Before creating a new release, ensure that everything on the main branch since
the last tag is in a releasable state! At a minimum, run the tests.
- Create the commit for the release
- Use the latest supported Python version. Using a virtual environment is recommended.
- In
slack_bolt/version.pybump the version number in adherence to Semantic Versioning and the Versioning section. - Build the docs with
./scripts/generate_api_docs.sh. - Commit with a message including the new version number. For example
1.2.3& push the commit to a branch and create a PR to sanity check.git checkout -b 1.2.3-releasegit add --all(review files withgit statusbefore committing)git commit -m 'chore(release): version 1.2.3'git push -u origin 1.2.3-release
- Add relevant labels to the PR and add the PR to a GitHub Milestone.
- Merge in release PR after getting an approval from at least one maintainer.
- Create a new GitHub Release
- Navigate to the Releases page.
- Click the "Draft a new release" button.
- Set the "Target" to the
mainbranch. - Click "Tag: Select tag"
- Input a new tag name manually. The tag name must match the version in
slack_bolt/version.pyprefixed with "v" (e.g., if version is1.2.3, enterv1.2.3) - Click the "Create a new tag" button. This won't create your tag immediately.
- Click the "Generate release notes" button.
- The release name should match the tag name!
- Edit the resulting notes to ensure they have decent messaging that is understandable by non-contributors, but each commit should still have its own line.
- Include a link to the current GitHub Milestone.
- Ensure the "latest release" checkbox is checked to mark this as the latest stable release.
- Publish the release by clicking the "Publish release" button!
- Navigate to the release workflow run. You will need to approve the deployment!
- After a few minutes, the corresponding version will be available on https://pypi.org/project/slack-bolt/.
- Close the current GitHub Milestone and create one for the next patch version.
- (Slack Internal) Communicate the release internally
- Include a link to the GitHub release
- (Slack Internal) Tweet by @SlackAPI
- Not necessary for patch updates, might be needed for minor updates, definitely needed for major updates. Include a link to the GitHub release
This project uses Semantic Versioning, expressed through the numbering scheme of PEP-0440.
main is where active development occurs. Long running named feature branches are occasionally created for
collaboration on a feature that has a large scope (because everyone cannot push commits to another person's open Pull
Request). At some point in the future after a major version increment, there may be maintenance branches for older major
versions.
Labels are used to run issues through an organized workflow. Here are the basic definitions:
bug: A confirmed bug report. A bug is considered confirmed when reproduction steps have been documented and the issue has been reproduced.enhancement: A feature request for something this package might not already do.docs: An issue that is purely about documentation work.tests: An issue that is purely about testing work.discussion: An issue that is purely meant to hold a discussion. Typically the maintainers are looking for feedback in this issues.question: An issue that is like a support request because the user's usage was not correct.
Triage is the process of taking new issues that aren't yet "seen" and marking them with a basic level of information
with labels. An issue should have one of the following labels applied: bug, enhancement, question,
needs feedback, docs, tests, or discussion.
Issues are closed when a resolution has been reached. If for any reason a closed issue seems relevant once again, reopening is great and better than creating a duplicate issue.
See the /docs/README.md file for documentation instructions.
When in doubt, find the other maintainers and ask.