Skip to content

Commit 86243af

Browse files
committed
Merge branch 'main' into dp-token-source
2 parents 9107e9c + f4db6f4 commit 86243af

File tree

349 files changed

+52617
-32626
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

349 files changed

+52617
-32626
lines changed

.github/workflows/downstreams.yml

Lines changed: 0 additions & 54 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ If it is appropriate to write a design document, the document must be hosted eit
1313
Small patches and bug fixes don't need prior communication.
1414

1515
## Coding Style
16-
Code style is enforced by a formatter check in your pull request. We use [yapf](https://github.com/google/yapf) to format our code. Run `make fmt` to ensure your code is properly formatted prior to raising a pull request.
16+
17+
Code style is enforced by a formatter check in your pull request. We use [Black](https://github.com/psf/black) to format our code. Run `make fmt` to ensure your code is properly formatted prior to raising a pull request.
1718

1819
## Signed Commits
1920
This repo requires all contributors to sign their commits. To configure this, you can follow [Github's documentation](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits) to create a GPG key, upload it to your Github account, and configure your git client to sign commits.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ install:
1111
pip install .
1212

1313
fmt:
14-
yapf -pri databricks tests
14+
black databricks tests
1515
autoflake -ri databricks tests
1616
isort databricks tests
1717

1818
fmte:
19-
yapf -pri examples
19+
black examples
2020
autoflake -ri examples
2121
isort examples
2222

NEXT_CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### Internal Changes
1212
* Update Jobs ListJobs API to support paginated responses ([#896](https://github.com/databricks/databricks-sdk-py/pull/896))
13+
* Update Jobs ListRuns API to support paginated responses ([#890](https://github.com/databricks/databricks-sdk-py/pull/890))
1314
* Introduce automated tagging ([#888](https://github.com/databricks/databricks-sdk-py/pull/888))
1415
* Update Jobs GetJob API to support paginated responses ([#869](https://github.com/databricks/databricks-sdk-py/pull/869)).
1516

0 commit comments

Comments
 (0)