Skip to content

Commit

Permalink
Fix versioning for 1.0.0, ping GUI, a little more installer time (Chi…
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffmang9 committed Mar 18, 2021
1 parent c42c531 commit b833fde
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-macos-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
build:
name: MacOS installer on Catalina and Python 3.8
runs-on: ${{ matrix.os }}
timeout-minutes: 30
timeout-minutes: 40
strategy:
fail-fast: false
max-parallel: 4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
build:
name: Windows Installer on Windows 10 and Python 3.7
runs-on: [windows-latest]
timeout-minutes: 30
timeout-minutes: 40

steps:
- name: Cancel previous runs on the same branch
Expand Down
4 changes: 4 additions & 0 deletions build_scripts/installer-version.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ def main():
patch_release_number = original_minor_ver_list[1]
if smc_patch_version and "dev" in smc_patch_version:
dev_release_number = "." + smc_patch_version
elif len(version) == 2:
major_release_number = scm_major_version
minor_release_number = scm_minor_version
patch_release_number = "0"
else:
major_release_number = scm_major_version
minor_release_number = scm_minor_version
Expand Down

0 comments on commit b833fde

Please sign in to comment.