2021.4.1 #11

Merged
edraft merged 172 commits from 2021.04.01 into 2021.04 2021-03-21 20:04:24 +01:00
3 changed files with 6 additions and 3 deletions
Showing only changes of commit bc99763329 - Show all commits

View File

@ -106,7 +106,10 @@ class UpdateService(CommandABC):
index = self._project_settings.dependencies.index(old_package) index = self._project_settings.dependencies.index(old_package)
if '/' in new_package: if '/' in new_package:
new_package = new_package.split('/')[0] new_package = new_package.split('/')[0]
if '\\' in new_package:
new_package = new_package.split('\\')[0]
self._project_settings.dependencies[index] = new_package self._project_settings.dependencies[index] = new_package
config = { config = {

View File

@ -110,7 +110,7 @@ class ProjectSettings(ConfigurationModelABC):
if ProjectSettingsNameEnum.python_path.value in settings: if ProjectSettingsNameEnum.python_path.value in settings:
path = settings[ProjectSettingsNameEnum.python_path.value] 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: if path != '' and path is not None:
Error.warn(f'{ProjectSettingsNameEnum.python_path.value} not found') Error.warn(f'{ProjectSettingsNameEnum.python_path.value} not found')

View File

@ -16,7 +16,7 @@
"LicenseName": "MIT", "LicenseName": "MIT",
"LicenseDescription": "MIT, see LICENSE for more details.", "LicenseDescription": "MIT, see LICENSE for more details.",
"Dependencies": [ "Dependencies": [
"sh_cpl==2021.4.1.post9" "sh_cpl==2021.4.1.post11"
], ],
"PythonVersion": ">=3.8", "PythonVersion": ">=3.8",
"PythonPath": "../../../../cpl-env/bin/python3.9", "PythonPath": "../../../../cpl-env/bin/python3.9",