9 lines
147 B
Python
9 lines
147 B
Python
# Copyright 2018 Databricks, Inc.
|
|
import re
|
|
|
|
VERSION = "2.22.4"
|
|
|
|
|
|
def is_release_version():
|
|
return bool(re.match(r"^\d+\.\d+\.\d+$", VERSION))
|