Skip to content

Commit

Permalink
v2.3.6 release (#1289)
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunsuresh authored Sep 17, 2024
2 parents 016b9ce + 34c897e commit 6ccd81b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
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

0 comments on commit 6ccd81b

Please sign in to comment.