diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fbbf6ccd..c7012c19 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -68,10 +68,11 @@ jobs: comment: 'Please commit the suggested changes from markdownlint.' event: 'REQUEST_CHANGES' - - name: "Run Type Checking" + - name: "Run Type Checking (Optional to passing)" if: always() run: poe types - + continue-on-error: true + - name: "Generate Docs" if: matrix.python-version == '3.9' && github.ref == 'refs/heads/master' run: poe docs --ci diff --git a/CHANGELOG.md b/CHANGELOG.md index 954d5c2b..9520ceb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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). +## [Unreleased] + +### Fixed +- Changed extra's name back to `aio` + ## [6.0.0] - 2025-11-26 ### Added diff --git a/azure-kusto-data/pyproject.toml b/azure-kusto-data/pyproject.toml index dff2ff29..ed4bc1eb 100644 --- a/azure-kusto-data/pyproject.toml +++ b/azure-kusto-data/pyproject.toml @@ -33,7 +33,7 @@ classifiers = [ pandas = [ "pandas>=2.3.1", ] -async = [ +aio = [ "aiohttp>=3.12.15", "asgiref>=3.9.1", ] diff --git a/pyproject.toml b/pyproject.toml index 19f7af0f..bbc6b11c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -80,4 +80,7 @@ args = { bump = { help = "Bump version [possible values: major, minor, patch, st [tool.basedpyright] pythonVersion = "3.9" -reportUnnecessaryTypeIgnoreComment = false \ No newline at end of file +reportUnnecessaryTypeIgnoreComment = false +reportExplicitAny = false +reportAny = false +reportUnknownMemberType = false \ No newline at end of file diff --git a/uv.lock b/uv.lock index 0782eab6..f6e658fb 100644 --- a/uv.lock +++ b/uv.lock @@ -241,7 +241,7 @@ dependencies = [ ] [package.optional-dependencies] -async = [ +aio = [ { name = "aiohttp" }, { name = "asgiref" }, ] @@ -251,8 +251,8 @@ pandas = [ [package.metadata] requires-dist = [ - { name = "aiohttp", marker = "extra == 'async'", specifier = ">=3.12.15" }, - { name = "asgiref", marker = "extra == 'async'", specifier = ">=3.9.1" }, + { name = "aiohttp", marker = "extra == 'aio'", specifier = ">=3.12.15" }, + { name = "asgiref", marker = "extra == 'aio'", specifier = ">=3.9.1" }, { name = "azure-core", specifier = ">=1.35.0,<2" }, { name = "azure-identity", specifier = ">=1.24.0,<2" }, { name = "ijson", specifier = "~=3.4.0" }, @@ -261,7 +261,7 @@ requires-dist = [ { name = "python-dateutil", specifier = ">=2.9.0" }, { name = "requests", specifier = ">=2.32.4" }, ] -provides-extras = ["pandas", "async"] +provides-extras = ["pandas", "aio"] [[package]] name = "azure-kusto-ingest"