Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm001 committed Jan 10, 2024
1 parent 795ee12 commit 9646f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion photon-lib/py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
versionString = m.group(0)
print(len(m.group(2)))
# Hack -- for strings like v2024.1.1, do NOT add matruity/suffix
if len(m.group(2)) >= 0:
if len(m.group(2)) > 0:
print("using beta group matcher")
prefix = m.group(1)
maturity = m.group(2)
Expand Down

0 comments on commit 9646f40

Please sign in to comment.