Skip to content

Commit 711946c

Browse files
committed
Bump minimum python to 3.5.4
1 parent 018db0f commit 711946c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/pythonapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-ver:
17-
- "3.5.3"
17+
- "3.5.4"
1818
- "3.5"
1919
- "3.6"
2020
- "3.7"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You have a few options for getting the bot, you can:
1515

1616
## Installing CloudBot
1717

18-
Firstly, CloudBot will only run on **Python 3.5.3 or higher**
18+
Firstly, CloudBot will only run on **Python 3.5.4 or higher**
1919

2020
To install CloudBot on *nix (linux, etc), see [here](docs/installing/nix.md)
2121

cloudbot/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import sys
66

77
# check python version
8-
if sys.version_info < (3, 5, 3):
9-
print("CloudBot requires Python 3.5.3 or newer.")
8+
if sys.version_info < (3, 5, 4):
9+
print("CloudBot requires Python 3.5.4 or newer.")
1010
sys.exit(1)
1111

1212

0 commit comments

Comments
 (0)