Skip to content
Snippets Groups Projects

Fix: Version string test case

Merged Markus Holzer requested to merge holzer-master-patch-17736 into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
import lbmpy
import pystencils as ps
def test_version_string():
version = lbmpy.__version__
version = ps.__version__
print(version)
numeric_version = [int(x, 10) for x in version.split('.')[0:1]]
Loading