Skip to content

Commit

Permalink
Trying to fix certifi failing to execute error on Win10
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Blumberg committed Nov 2, 2019
1 parent a5405e2 commit 1cf83d3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Expand Up @@ -3,9 +3,9 @@ trigger:
branches:
include:
- andover
tags:
include:
- v*
# tags:
# include:
# - v*
# Setup build strategy (listing the various VMs and configurations we'll use)
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion runsharp/SHARPpy-osx.spec
Expand Up @@ -21,7 +21,7 @@ import sharppy
# Analyze the SHARPpy package to get dependencies, etc.
a = Analysis(['SHARPpy.py'],
pathex=['/Users/vsts/agent/2.155.1/work/1/s/runsharp', '/Users/vsts/agent/2.155.1/work/1/s', '/Users/blumberg/SHARPpy/runsharp'],
hiddenimports=['xml.etree.ElementTree', 'sharppy.io.pecan_decoder', 'sharppy.io.spc_decoder', 'sharppy.io.buf_decoder', 'sharppy.io.uwyo_decoder', 'datasources.available', 'sharppy.sharptab.prof_collection'],
hiddenimports=['xml.etree.ElementTree', 'sharppy.io.pecan_decoder', 'sharppy.io.spc_decoder', 'sharppy.io.buf_decoder', 'sharppy.io.uwyo_decoder', 'datasources.available', 'sharppy.sharptab.prof_collection', 'certifi'],
hookspath=None,
runtime_hooks=None)
a.binaries = [x for x in a.binaries if not x[0].startswith("scipy")]
Expand Down
6 changes: 3 additions & 3 deletions runsharp/SHARPpy-win7-64.spec
Expand Up @@ -19,7 +19,7 @@ import sharppy

a = Analysis(['SHARPpy.py'],
pathex=[r'D:\a\1\s\runsharp', r'D:\a\1\s'],
hiddenimports=['xml.etree.ElementTree', 'sharppy.io.pecan_decoder', 'sharppy.io.spc_decoder', 'sharppy.io.buf_decoder', 'sharppy.io.uwyo_decoder', 'datasources.available', 'sharppy.sharptab.prof_collection'],
hiddenimports=['xml.etree.ElementTree', 'sharppy.io.pecan_decoder', 'sharppy.io.spc_decoder', 'sharppy.io.buf_decoder', 'sharppy.io.uwyo_decoder', 'datasources.available', 'sharppy.sharptab.prof_collection', 'certifi'],
hookspath=None,
runtime_hooks=None)

Expand Down Expand Up @@ -64,10 +64,10 @@ exe = EXE(pyz,
a.zipfiles,
a.datas,
name='SHARPpy.exe',
debug=False,
debug=True,
strip=None,
upx=True,
console=False, icon='icons\\SHARPpy.ico')
console=True, icon='icons\\SHARPpy.ico')

# Revert the _version.py file to its original version using git
import subprocess
Expand Down

0 comments on commit 1cf83d3

Please sign in to comment.