Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Commit 9ba6b9e

Browse files
[Fix] some workflow changes
1 parent 775583e commit 9ba6b9e

File tree

2 files changed

+52
-36
lines changed

2 files changed

+52
-36
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,3 @@ jobs:
2828

2929
- name: Run tests
3030
run: make dev install test
31-
32-
- name: Publish test coverage
33-
uses: codecov/codecov-action@v4
34-
env:
35-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

setup.py

Lines changed: 52 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -8,34 +8,55 @@
88
with version_file.open('r') as f:
99
exec(f.read(), version_data)
1010

11-
setup(name="sync-databricks-sdk",
12-
version=version_data['__version__'],
13-
packages=find_packages(exclude=["tests", "*tests.*", "*tests"]),
14-
package_data = {"databricks.sdk": ["py.typed"]},
15-
python_requires=">=3.7",
16-
install_requires=["requests>=2.28.1,<3", "google-auth~=2.0"],
17-
extras_require={"dev": ["pytest", "pytest-cov", "pytest-xdist", "pytest-mock",
18-
"yapf", "pycodestyle", "autoflake", "isort", "wheel",
19-
"ipython", "ipywidgets", "requests-mock", "pyfakefs",
20-
"databricks-connect", "pytest-rerunfailures"],
21-
"notebook": ["ipython>=8,<9", "ipywidgets>=8,<9"]},
22-
author="Sync Computing",
23-
author_email="[email protected]",
24-
description="Sync Fork Databricks SDK for Python (Beta)",
25-
long_description=io.open("README.md", encoding="utf-8").read(),
26-
long_description_content_type='text/markdown',
27-
url="https://databricks-sdk-py.readthedocs.io",
28-
keywords="databricks sdk",
29-
classifiers=[
30-
"Development Status :: 4 - Beta",
31-
"Intended Audience :: Developers",
32-
"Intended Audience :: Science/Research",
33-
"Intended Audience :: System Administrators",
34-
"License :: OSI Approved :: Apache Software License",
35-
"Programming Language :: Python :: 3.7",
36-
"Programming Language :: Python :: 3.8",
37-
"Programming Language :: Python :: 3.9",
38-
"Programming Language :: Python :: 3.10",
39-
"Programming Language :: Python :: 3.11",
40-
"Programming Language :: Python :: 3.12",
41-
"Operating System :: OS Independent"])
11+
setup(
12+
name="sync-databricks-sdk",
13+
version=version_data["__version__"],
14+
packages=find_packages(exclude=["tests", "*tests.*", "*tests"]),
15+
package_data={"databricks.sdk": ["py.typed"]},
16+
python_requires=">=3.7",
17+
install_requires=["requests>=2.28.1,<3", "google-auth~=2.0"],
18+
extras_require={
19+
"dev": [
20+
"pytest",
21+
"pytest-cov",
22+
"pytest-xdist",
23+
"pytest-mock",
24+
"yapf",
25+
"pycodestyle",
26+
"autoflake",
27+
"isort",
28+
"wheel",
29+
"ipython",
30+
"ipywidgets",
31+
"requests-mock",
32+
"pyfakefs",
33+
"databricks-connect",
34+
"pytest-rerunfailures",
35+
"openai",
36+
'langchain-openai; python_version > "3.7"',
37+
"httpx",
38+
],
39+
"notebook": ["ipython>=8,<9", "ipywidgets>=8,<9"],
40+
},
41+
author="Sync Computing",
42+
author_email="[email protected]",
43+
description="Sync Fork Databricks SDK for Python (Beta)",
44+
long_description=io.open("README.md", encoding="utf-8").read(),
45+
long_description_content_type="text/markdown",
46+
url="https://databricks-sdk-py.readthedocs.io",
47+
keywords="databricks sdk",
48+
classifiers=[
49+
"Development Status :: 4 - Beta",
50+
"Intended Audience :: Developers",
51+
"Intended Audience :: Science/Research",
52+
"Intended Audience :: System Administrators",
53+
"License :: OSI Approved :: Apache Software License",
54+
"Programming Language :: Python :: 3.7",
55+
"Programming Language :: Python :: 3.8",
56+
"Programming Language :: Python :: 3.9",
57+
"Programming Language :: Python :: 3.10",
58+
"Programming Language :: Python :: 3.11",
59+
"Programming Language :: Python :: 3.12",
60+
"Operating System :: OS Independent",
61+
],
62+
)

0 commit comments

Comments
 (0)