mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-11-07 06:33:43 +01:00
19 lines
312 B
Python
Executable File
19 lines
312 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os
|
|
ROOT = os.path.dirname(__file__)+'/../../'
|
|
|
|
file = open(ROOT+'src/version.py','r') ;
|
|
exec file
|
|
file.close() ;
|
|
v = version.split('.')
|
|
v = map(int,v)
|
|
|
|
v[2] += 1
|
|
line = 'version = "%d.%d.%d"\n'%tuple(v)
|
|
|
|
file = open(ROOT+'src/version.py','w')
|
|
file.writelines([line])
|
|
file.close()
|
|
|