2021.4 #19
@ -107,6 +107,9 @@ class UpdateService(CommandABC):
|
||||
if '/' in new_package:
|
||||
new_package = new_package.split('/')[0]
|
||||
|
||||
if '\\' in new_package:
|
||||
new_package = new_package.split('\\')[0]
|
||||
|
||||
self._project_settings.dependencies[index] = new_package
|
||||
|
||||
config = {
|
||||
|
@ -110,7 +110,7 @@ class ProjectSettings(ConfigurationModelABC):
|
||||
|
||||
if ProjectSettingsNameEnum.python_path.value in settings:
|
||||
path = settings[ProjectSettingsNameEnum.python_path.value]
|
||||
if not os.path.isfile(path) or not os.path.islink(path):
|
||||
if not os.path.isfile(path) and not os.path.islink(path):
|
||||
if path != '' and path is not None:
|
||||
Error.warn(f'{ProjectSettingsNameEnum.python_path.value} not found')
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
"LicenseName": "MIT",
|
||||
"LicenseDescription": "MIT, see LICENSE for more details.",
|
||||
"Dependencies": [
|
||||
"sh_cpl==2021.4.1.post9"
|
||||
"sh_cpl==2021.4.1.post11"
|
||||
],
|
||||
"PythonVersion": ">=3.8",
|
||||
"PythonPath": "../../../../cpl-env/bin/python3.9",
|
||||
|
Loading…
Reference in New Issue
Block a user