Skip to content

Commit 654917a

Browse files
committed
fix unsupported python versions
1 parent b6146eb commit 654917a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ReleaseConfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ version_tuple = (4,0,0)
3838
# when that version is used. Python versions prior to deprecate_python_version
3939
# cause a warning to be issued (assuming it's not disabled). These values are
4040
# mandatory and must be present in the configuration file.
41-
unsupported_python_version = (2, 7, 0)
42-
deprecated_python_version = (2, 7, 0)
41+
unsupported_python_version = (3, 4, 0)
42+
deprecated_python_version = (3, 4, 0)
4343

4444
# If release_date is (yyyy, mm, dd, hh, mm, ss), that is used as the release
4545
# date and time. If release_date is (yyyy, mm, dd), it is used for the

0 commit comments

Comments
 (0)