Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cm/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## V2.3.6
- fixed "cm init" on Windows (do not check wget and curl - managed via CM scripts)

## V2.3.5
- added "cm init" to check system deps and pull mlcommons@cm4mlops by default
- fixed branch checkout in "cm pull repo"
Expand Down
2 changes: 1 addition & 1 deletion cm/cmind/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# Written by Grigori Fursin

__version__ = "2.3.5"
__version__ = "2.3.6"

from cmind.core import access
from cmind.core import error
Expand Down
16 changes: 10 additions & 6 deletions cm/cmind/repo/automation/core/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,17 @@ def install_system_packages(self, quiet):
if not git_status:
packages.append("git")

wget_status = self.command_exists('wget')
if not wget_status:
packages.append("wget")

curl_status = self.command_exists('curl')
if not curl_status:
packages.append("curl")
# wget and curl are managed via CM scripts on Windows
if os.name != 'nt':

wget_status = self.command_exists('wget')
if not wget_status:
packages.append("wget")

curl_status = self.command_exists('curl')
if not curl_status:
packages.append("curl")

name='venv'

Expand Down
Loading