Skip to content

Commit

Permalink
Update exiv2 dependency to v0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
henryborchers committed Oct 20, 2023
1 parent 961962a commit f6fa1f5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,13 +241,14 @@ def configure_cmake(self, extension: Pybind11Extension):
env_vars = {}
if platform.system() == "Windows":
try:
self.compiler.initialize()
self.compiler.spawn(['set'])
except errors.ExecError as e:
print(f'Failed to run "set". Reason {e}')
print(f'Failed to run "set". Reason: {e}')
try:
self.compiler.spawn(['dir'])
except errors.ExecError as e:
print(f'Failed to run "dir". Reason {e}')
print(f'Failed to run "dir". Reason: {e}')
with set_compiler_env(env_vars):
try:
# pprint(dict(os.environ))
Expand Down

0 comments on commit f6fa1f5

Please sign in to comment.