We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa26b6d commit eedc6deCopy full SHA for eedc6de
roundup/version_check.py
@@ -1,10 +1,10 @@
1
#!/usr/bin/env python
2
3
-# Roundup requires Python 2.7+ as mentioned in doc\installation.txt
+# Roundup requires Python 3.7+ as mentioned in doc\installation.txt
4
from __future__ import print_function
5
import sys
6
7
-VERSION_NEEDED = (2, 7)
+VERSION_NEEDED = (3, 7)
8
9
if sys.version_info < VERSION_NEEDED:
10
print("Content-Type: text/plain\n")
0 commit comments