Browse Source

Use the pathlib module

Contributes to CURA-9365
CURA-9177_Fix_CI_CD
j.spijker@ultimaker.com 4 years ago committed by Jelle Spijker
parent
commit
91b9d5f5d0
  1. 2
      generators/VirtualPythonEnv.py

2
generators/VirtualPythonEnv.py

@ -35,7 +35,7 @@ class VirtualPythonEnv(Generator):
@property
def content(self):
python_interpreter = self.conanfile.deps_user_info["cpython"].python
python_interpreter = Path(self.conanfile.deps_user_info["cpython"].python)
# When on Windows execute as Windows Path
if self.conanfile.settings.os == "Windows":

Loading…
Cancel
Save