Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/maintainers_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ $ pyenv local 3.8.5

$ pyenv versions
system
3.6.10
3.7.7
* 3.8.5 (set by /path-to-bolt-python/.python-version)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ A Python framework to build Slack apps in a flash with the latest platform featu
## Setup

```bash
# Python 3.6+ required
# Python 3.7+ required
python -m venv .venv
source .venv/bin/activate

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ dynamic = ["version", "readme", "dependencies", "authors"]
description = "The Bolt Framework for Python"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -20,7 +19,7 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.6"
requires-python = ">=3.7"


[project.urls]
Expand Down
7 changes: 1 addition & 6 deletions scripts/install_all_and_run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,7 @@ pip uninstall python-lambda
test_target="$1"
python_version=`python --version | awk '{print $2}'`

if [ ${python_version:0:3} == "3.6" ]
then
pip install -U -r requirements.txt
else
pip install -e .
fi
pip install -e .

if [[ $test_target != "" ]]
then
Expand Down
2 changes: 1 addition & 1 deletion slack_bolt/async_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
If you'd prefer to build your app with [asyncio](https://docs.python.org/3/library/asyncio.html), you can import the [AIOHTTP](https://docs.aiohttp.org/en/stable/) library and call the `AsyncApp` constructor. Within async apps, you can use the async/await pattern.

```bash
# Python 3.6+ required
# Python 3.7+ required
python -m venv .venv
source .venv/bin/activate

Expand Down
Loading