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 f6fa1f5 commit f78bb48
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,18 +240,9 @@ def configure_cmake(self, extension: Pybind11Extension):
else:
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}')
try:
self.compiler.spawn(['dir'])
except errors.ExecError as e:
print(f'Failed to run "dir". Reason: {e}')
with set_compiler_env(env_vars):
try:
# pprint(dict(os.environ))
pprint(dict(os.environ))
self.compiler.spawn(configure_command)
except errors.ExecError:
print("Failed at CMake config time")
Expand Down

0 comments on commit f78bb48

Please sign in to comment.