Skip to content

Commit

Permalink
Merge branch 'code-sign' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
BuvinJ committed Feb 11, 2021
2 parents 27eb7f1 + d36afaf commit b2fe4a5
Show file tree
Hide file tree
Showing 28 changed files with 768 additions and 43 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
include LICENSE
recursive-include docs *
recursive-include examples *
recursive-include distbuilder/util_res *
recursive-include distbuilder/code_sign_res *
recursive-include distbuilder/qtifw_res *
recursive-include distbuilder/qtifw_ui *
10 changes: 10 additions & 0 deletions distbuilder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,14 @@
, obfuscatedId

ExtLibHandling = OpyConfig.ExtLibHandling

from distbuilder.code_sign import \
SelfSignedCertConfig \
, SignToolConfig \
, generateTrustCerts \
, buildTrustCertInstaller \
, signExe \
, SIGNTOOL_PATH_ENV_VAR

from distbuilder.util import \
ExecutableScript \
Expand Down Expand Up @@ -129,6 +137,7 @@
, move \
, rename \
, tempDirPath \
, reserveTempFilePath \
, dirPath \
, joinPath \
, splitPath \
Expand Down Expand Up @@ -169,6 +178,7 @@
, versionTuple \
, versionStr \
, versionNo \
, getPassword \
, assertMinVer

def assertBuilderVer( ver ):
Expand Down
2 changes: 1 addition & 1 deletion distbuilder/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.8.30"
__version__ = "0.7.8.31"

0 comments on commit b2fe4a5

Please sign in to comment.