Skip to content

Commit

Permalink
#354 fix f-string formatting in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
arporter committed Jun 16, 2022
1 parent e4eee2c commit c7a7580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
MAJOR = 0
MINOR = 0
MICRO = 16
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
VERSION = f'{MAJOR}.{MINOR}.{MICRO}'

if __name__ == '__main__':

Expand Down

0 comments on commit c7a7580

Please sign in to comment.