Paul S

Results 1 comments of Paul S

Version numbers as floats are always a bad idea. Something like this should fix it: ```python from packaging import version assert version.parse(tf.__version__) >= version.parse("2.3"), "TensorFlow version is not >= 2.3"...