Skip to content

Commit

Permalink
Test and add support for Python 3.12 (#502)
Browse files Browse the repository at this point in the history
Co-authored-by: AsafMah <[email protected]>
  • Loading branch information
tonybaloney and AsafMah authored Nov 22, 2023
1 parent 23a1d6c commit 57a8f57
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
env:
PYTHON: ${{ matrix.python-version }}

Expand Down
3 changes: 2 additions & 1 deletion azure-kusto-data/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
namespace_packages=["azure"],
Expand All @@ -47,5 +48,5 @@
package_data={"": ["wellKnownKustoEndpoints.json"]},
include_package_data=True,
install_requires=["python-dateutil>=2.8.0", "requests>=2.13.0", "azure-identity>=1.5.0,<2", "msal>=1.9.0,<2", "ijson~=3.1", "azure-core>=1.11.0,<2"],
extras_require={"pandas": ["pandas"], "aio": ["aiohttp>=3.4.4,<4", "asgiref>=3.2.3,<4"]},
extras_require={"pandas": ["pandas"], "aio": ["aiohttp>=3.8.0,<4", "asgiref>=3.2.3,<4"]},
)
1 change: 1 addition & 0 deletions azure-kusto-ingest/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
packages=find_packages(exclude=["azure", "tests"]),
Expand Down

0 comments on commit 57a8f57

Please sign in to comment.