Skip to content

Commit e11ce1e

Browse files
committed
Changed python version control.
1 parent 91c2030 commit e11ce1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ruspy/ruspy_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# We only support modern Python.
88
np.testing.assert_equal(sys.version_info[0], 3)
9-
np.testing.assert_equal(sys.version_info[1] >= 5, True)
9+
np.testing.assert_equal(sys.version_info[:2] >= (3, 6), True)
1010

1111
# We rely on relative paths throughout the package.
1212
PACKAGE_DIR = os.path.dirname(os.path.realpath(__file__))

0 commit comments

Comments
 (0)