Sha256: a415e8170122c9117d40c6fb9efc824b45f59e68f59deb570102b4bf4c9821d6
Contents?: true
Size: 350 Bytes
Versions: 2
Compression:
Stored size: 350 Bytes
Contents
import sys import unittest def skip_if(condition, reason): if condition: raise unittest.SkipTest(reason) HAVE_PYTHON_36 = sys.version_info >= (3, 6, 0) HAVE_32_BIT_LINUX = sys.maxsize == 2**31-1 and sys.platform == 'linux' requires_py36 = unittest.skipUnless( sys.version_info > (3, 6), "test requires Python 3.6 or greater")
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ndtypes-0.2.0dev5 | ext/ruby_ndtypes/ndtypes/python/ndt_support.py |
ndtypes-0.2.0dev4 | ext/ruby_ndtypes/ndtypes/python/ndt_support.py |