-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin' into fix/pyarrow_13_upgrade
- Loading branch information
Showing
622 changed files
with
8,789 additions
and
2,591 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
* @houqp @xianwill @wjones127 @fvaleye @roeap @rtyler @mosyp | ||
crates/ @wjones127 @roeap @rtyler | ||
delta-inspect/ @wjones127 @rtyler | ||
proofs/ @houqp | ||
python/ @wjones127 @fvaleye @rtyler @roeap @houqp | ||
python/ @wjones127 @fvaleye @roeap | ||
tlaplus/ @houqp | ||
.github/ @wjones127 @rtyler | ||
docs/ @MrPowers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Build documentation | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- python/** | ||
- docs/** | ||
- mkdocs.yml | ||
- .github/workflows/docs.yml | ||
jobs: | ||
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
config-file: docs/mlc-config.json | ||
folder-path: docs | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: psf/black@stable | ||
with: | ||
src: docs/src/python | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
components: rustfmt, clippy | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Build and install deltalake | ||
run: | | ||
cd python | ||
pip install virtualenv | ||
virtualenv venv | ||
source venv/bin/activate | ||
make develop | ||
cd .. | ||
- name: Install dependencies | ||
run: | | ||
source python/venv/bin/activate | ||
pip install -r docs/requirements.txt | ||
- name: Build documentation | ||
run: | | ||
source python/venv/bin/activate | ||
mkdocs build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,6 @@ Cargo.lock | |
!/delta-inspect/Cargo.lock | ||
!/proofs/Cargo.lock | ||
|
||
justfile | ||
site | ||
__pycache__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.