Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade azure-kusto-data #188

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .github/workflows/runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
timeout-minutes: 1
strategy:
matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9' ] # Make sure this matches the supported versions in setup.py
python-version: [ '3.7', '3.8', '3.9' ] # Make sure this matches the supported versions in setup.py
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
non_pyspark_requires = [
# Not required in PySpark, because authentication is handled differently there.
# Release notes: https://github.com/Azure/azure-kusto-python/releases
'azure-kusto-data==3.1.0', # Earlier versions not supported because of: https://github.com/Azure/azure-kusto-python/issues/312
'azure-kusto-data==4.1.2', # Earlier versions not supported because of: https://github.com/Azure/azure-kusto-python/issues/312
]

# Not required in PySpark because it is already installed there.
Expand Down Expand Up @@ -83,7 +83,6 @@ def run(self):
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
# Make sure this list matches the tested versions in runtests.yml
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down