Skip to content

Commit eedc6de

Browse files
committed
fix: make version_check enforce version is 3.7+
1 parent fa26b6d commit eedc6de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/version_check.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env python
22

3-
# Roundup requires Python 2.7+ as mentioned in doc\installation.txt
3+
# Roundup requires Python 3.7+ as mentioned in doc\installation.txt
44
from __future__ import print_function
55
import sys
66

7-
VERSION_NEEDED = (2, 7)
7+
VERSION_NEEDED = (3, 7)
88

99
if sys.version_info < VERSION_NEEDED:
1010
print("Content-Type: text/plain\n")

0 commit comments

Comments
 (0)