Skip to content

Commit 51d8968

Browse files
authored
fix dependency issues in setup.py (#574)
* Update CHANGELOG for version 5.0.3 and fix dependency issues in setup.py * Update CHANGELOG for version 5.0.3 and fix dependency issues in setup.py * Update CHANGELOG for version 5.0.3 and fix dependency issues in setup.py * Refactor message handling to use StatusMessage in queue operations * Refactor message handling to use StatusMessage in queue operations * Refactor message handling to use StatusMessage in queue operations
1 parent e3a8c14 commit 51d8968

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [5.0.3] - 2025-05-04
9+
10+
### Fixed
11+
12+
- Dependency issues
13+
814
## [5.0.2] - 2025-05-30
915

1016
### Fixed

azure-kusto-data/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@
4949
packages=find_packages(exclude=["azure", "*tests*", "*tests.*"]),
5050
package_data={"": ["wellKnownKustoEndpoints.json", "py.typed", "kcsb.json"]},
5151
include_package_data=True,
52-
install_requires=["python-dateutil>=2.8.0", "requests>=2.32.3", "azure-identity>=1.21.0,<2", "msal>=1.9.0,<2", "ijson~=3.1", "azure-core>=1.11.0,<2"],
52+
install_requires=["python-dateutil>=2.8.0", "requests>=2.32.3", "azure-identity>=1.21.0,<2", "msal>=1.9.0,<2", "ijson~=3.1", "azure-core>=1.33.0,<2"],
5353
extras_require={"pandas": ["pandas"], "aio": ["aiohttp>=3.8.0,<4", "asgiref>=3.2.3,<4"]},
5454
)

azure-kusto-ingest/setup.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
if not VERSION:
2020
raise RuntimeError("Cannot find version information")
2121

22-
2322
setup(
2423
name=PACKAGE_NAME,
2524
version=VERSION,
@@ -45,6 +44,12 @@
4544
],
4645
packages=find_packages(exclude=["azure", "*tests*", "*tests.*"]),
4746
package_data={"": ["py.typed"]},
48-
install_requires=["azure-kusto-data=={}".format(VERSION), "azure-storage-blob>=12,<13", "azure-storage-queue>=12,<13", "tenacity>=8.0.0"],
47+
install_requires=[
48+
"azure-kusto-data=={}".format(VERSION),
49+
# TODO - this has to be locked to this version due to https://github.com/Azure/azure-sdk-for-python/issues/40041
50+
"azure-storage-blob==12.23.0",
51+
"azure-storage-queue==12.12.0",
52+
"tenacity>=8.0.0",
53+
],
4954
extras_require={"pandas": ["pandas"], "aio": []},
5055
)

0 commit comments

Comments
 (0)