File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
src/machinelearningservices Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 2026-02-11
2+
3+ ### Azure Machine Learning CLI (v2) v 2.41.1
4+
5+ - Replace deprecated pkg_resources for Python 3.13 compatibility
6+
17## 2026-01-06
28
39### Azure Machine Learning CLI (v2) v 2.41.0
Original file line number Diff line number Diff line change 77# Changes may cause incorrect behavior and will be lost if the code is
88# regenerated.
99# --------------------------------------------------------------------------
10- import pkg_resources
1110
1211REQUIREMENTS = []
1312with open ("azext_mlv2/manual/requirements.txt" , "rt" ) as fd :
14- REQUIREMENTS = [str ( requirement ) for requirement in pkg_resources . parse_requirements ( fd )]
13+ REQUIREMENTS = [line . strip ( ) for line in fd if line . strip () and not line . strip (). startswith ( '#' )]
1514DEPENDENCIES = REQUIREMENTS
Original file line number Diff line number Diff line change 1010from setuptools import setup , find_packages
1111
1212# HISTORY.rst entry.
13- VERSION = '2.41.0 '
13+ VERSION = '2.41.1 '
1414
1515# The full list of classifiers is available at
1616# https://pypi.python.org/pypi?%3Aaction=list_classifiers
You can’t perform that action at this time.
0 commit comments