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
6 changes: 6 additions & 0 deletions src/machinelearningservices/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2026-02-11

### Azure Machine Learning CLI (v2) v 2.41.1

- Replace deprecated pkg_resources for Python 3.13 compatibility

## 2026-01-06

### Azure Machine Learning CLI (v2) v 2.41.0
Expand Down
3 changes: 1 addition & 2 deletions src/machinelearningservices/azext_mlv2/manual/dependency.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
import pkg_resources

REQUIREMENTS = []
with open("azext_mlv2/manual/requirements.txt", "rt") as fd:
REQUIREMENTS = [str(requirement) for requirement in pkg_resources.parse_requirements(fd)]
REQUIREMENTS = [line.strip() for line in fd if line.strip() and not line.strip().startswith('#')]
DEPENDENCIES = REQUIREMENTS
2 changes: 1 addition & 1 deletion src/machinelearningservices/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from setuptools import setup, find_packages

# HISTORY.rst entry.
VERSION = '2.41.0'
VERSION = '2.41.1'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Loading