Rename version config file

master
Ken Subratie 2023-06-09 13:14:41 -04:00
parent 7a1064898a
commit 885efa24c1
2 changed files with 12 additions and 10 deletions

View File

@ -28,8 +28,15 @@
# CONTROL_VER = 6
# OFFICIAL = True
MAJOR_VER = 23
MINOR_VER = 3
REVISION_VER = 3
CONTROL_VER = 6
OFFICIAL = False
# MAJOR_VER = 23
# MINOR_VER = 3
# REVISION_VER = 4
# CONTROL_VER = 6
# OFFICIAL = True

View File

@ -1,16 +1,11 @@
import argparse
import fileinput
import os
import shutil
import subprocess
import sys
import time
from tool_config import CONTROL_VER as control
from tool_config import MAJOR_VER as major
from tool_config import MINOR_VER as minor
from tool_config import OFFICIAL as official
from tool_config import REVISION_VER as revision
from config import CONTROL_VER as control
from config import MAJOR_VER as major
from config import MINOR_VER as minor
from config import OFFICIAL as official
from config import REVISION_VER as revision
class Versioning: