Skip to content

Commit 16a6fa8

Browse files
browniebrokesijis
andauthored
Update exception if installing on Python <3.7 (#1585)
* Update exception if installing on Python <3.7 * docs: add info to CHANGES Co-authored-by: Sijis Aviles <[email protected]>
1 parent 893ad12 commit 16a6fa8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ fixes:
1111
- chore: add docs build to ci (#1582)
1212
- backend/xmpp: fix forward type references (#1578)
1313
- chore: remove campfire references (#1584)
14+
- chore/setup: fix exception when installing on python <3.7 (#1585)
1415

1516

1617
v6.1.9 (2022-06-11)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
py_version = sys.version_info[:2]
2323

2424
if py_version < (3, 7):
25-
raise RuntimeError("Errbot requires Python 3.6 or later")
25+
raise RuntimeError("Errbot requires Python 3.7 or later")
2626

2727
VERSION_FILE = os.path.join("errbot", "version.py")
2828

0 commit comments

Comments
 (0)