Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [5.0.3] - 2025-05-04

### Fixed

- Dependency issues

## [5.0.2] - 2025-05-30

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion azure-kusto-data/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@
packages=find_packages(exclude=["azure", "*tests*", "*tests.*"]),
package_data={"": ["wellKnownKustoEndpoints.json", "py.typed", "kcsb.json"]},
include_package_data=True,
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"],
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"],
extras_require={"pandas": ["pandas"], "aio": ["aiohttp>=3.8.0,<4", "asgiref>=3.2.3,<4"]},
)
8 changes: 6 additions & 2 deletions azure-kusto-ingest/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
if not VERSION:
raise RuntimeError("Cannot find version information")


setup(
name=PACKAGE_NAME,
version=VERSION,
Expand All @@ -45,6 +44,11 @@
],
packages=find_packages(exclude=["azure", "*tests*", "*tests.*"]),
package_data={"": ["py.typed"]},
install_requires=["azure-kusto-data=={}".format(VERSION), "azure-storage-blob>=12,<13", "azure-storage-queue>=12,<13", "tenacity>=8.0.0"],
install_requires=[
"azure-kusto-data=={}".format(VERSION),
"azure-storage-blob==12.24.0", # TODO - this has to be locked to this version due to https://github.com/Azure/azure-sdk-for-python/issues/40041
"azure-storage-queue>=12,<13",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

queue should be the same

"tenacity>=8.0.0",
],
extras_require={"pandas": ["pandas"], "aio": []},
)
Loading