diff --git a/setup.py b/setup.py index 51d151c16..764bd51fb 100644 --- a/setup.py +++ b/setup.py @@ -11,5 +11,5 @@ # load version number from file in sources dir without importing with open('fastf1/version.py') as vfobj: vstring = str(vfobj.read()) - version = re.search(r"(\d.\d.\d)", vstring)[0] + version = re.search(r"(\d+.\d+.\d+)", vstring)[0] setup(version=version)