Merge pull request #2051 from github/angelapwen/patch-release-script
Fix type error in `Update release branch` workflow
This commit is contained in:
commit
40cb08c121
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ config = configparser.ConfigParser()
|
||||||
with open(os.path.join(grandparent_dir, 'releases.ini')) as stream:
|
with open(os.path.join(grandparent_dir, 'releases.ini')) as stream:
|
||||||
config.read_string('[default]\n' + stream.read())
|
config.read_string('[default]\n' + stream.read())
|
||||||
|
|
||||||
OLDEST_SUPPORTED_MAJOR_VERSION = config['default']['OLDEST_SUPPORTED_MAJOR_VERSION']
|
OLDEST_SUPPORTED_MAJOR_VERSION = int(config['default']['OLDEST_SUPPORTED_MAJOR_VERSION'])
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue