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 91c2030 commit e11ce1eCopy full SHA for e11ce1e
ruspy/ruspy_config.py
@@ -6,7 +6,7 @@
6
7
# We only support modern Python.
8
np.testing.assert_equal(sys.version_info[0], 3)
9
-np.testing.assert_equal(sys.version_info[1] >= 5, True)
+np.testing.assert_equal(sys.version_info[:2] >= (3, 6), True)
10
11
# We rely on relative paths throughout the package.
12
PACKAGE_DIR = os.path.dirname(os.path.realpath(__file__))
0 commit comments