mirror of
https://github.com/Syncplay/syncplay
synced 2025-02-14 01:46:59 +00:00
13 lines
217 B
Python
13 lines
217 B
Python
#!/usr/bin/env python3
|
|
|
|
import json
|
|
from syncplay import version
|
|
|
|
f = open('bintray.json', 'r')
|
|
data = json.load(f)
|
|
|
|
data['version']['name'] = 'v' + version
|
|
|
|
g = open('bintray.json', 'w')
|
|
json.dump(data, g, indent=4)
|