Skip to content

Commit 347cb5e

Browse files
authored
Remove py36 references (#1330)
1 parent c75897e commit 347cb5e

File tree

5 files changed

+4
-11
lines changed

5 files changed

+4
-11
lines changed

.github/maintainers_guide.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ $ pyenv local 3.8.5
2525

2626
$ pyenv versions
2727
system
28-
3.6.10
2928
3.7.7
3029
* 3.8.5 (set by /path-to-bolt-python/.python-version)
3130

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A Python framework to build Slack apps in a flash with the latest platform featu
1919
## Setup
2020

2121
```bash
22-
# Python 3.6+ required
22+
# Python 3.7+ required
2323
python -m venv .venv
2424
source .venv/bin/activate
2525

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ dynamic = ["version", "readme", "dependencies", "authors"]
88
description = "The Bolt Framework for Python"
99
license = { text = "MIT" }
1010
classifiers = [
11-
"Programming Language :: Python :: 3.6",
1211
"Programming Language :: Python :: 3.7",
1312
"Programming Language :: Python :: 3.8",
1413
"Programming Language :: Python :: 3.9",
@@ -20,7 +19,7 @@ classifiers = [
2019
"License :: OSI Approved :: MIT License",
2120
"Operating System :: OS Independent",
2221
]
23-
requires-python = ">=3.6"
22+
requires-python = ">=3.7"
2423

2524

2625
[project.urls]

scripts/install_all_and_run_tests.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,7 @@ pip uninstall python-lambda
1616
test_target="$1"
1717
python_version=`python --version | awk '{print $2}'`
1818

19-
if [ ${python_version:0:3} == "3.6" ]
20-
then
21-
pip install -U -r requirements.txt
22-
else
23-
pip install -e .
24-
fi
19+
pip install -e .
2520

2621
if [[ $test_target != "" ]]
2722
then

slack_bolt/async_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
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.
66
77
```bash
8-
# Python 3.6+ required
8+
# Python 3.7+ required
99
python -m venv .venv
1010
source .venv/bin/activate
1111

0 commit comments

Comments
 (0)