python/build/libs.py: update OpenSSL to 3.0.0-beta2

This commit is contained in:
Max Kellermann
2021-08-06 17:20:58 +02:00
parent dde77ec6bd
commit 0f56ddb805
2 changed files with 3 additions and 3 deletions
python/build

@ -20,7 +20,7 @@ class Project:
self.base = base
if name is None or version is None:
m = re.match(r'^([-\w]+)-(\d[\d.]*[a-z]?[\d.]*(?:-alpha\d+)?)(\+.*)?$', self.base)
m = re.match(r'^([-\w]+)-(\d[\d.]*[a-z]?[\d.]*(?:-(?:alpha|beta)\d+)?)$', self.base)
if name is None: name = m.group(1)
if version is None: version = m.group(2)