We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6da7d66 commit 5f6c7a4Copy full SHA for 5f6c7a4
.github/workflows/paimon-python-checks.yml
@@ -145,6 +145,16 @@ jobs:
145
maturin build --release
146
pip install target/wheels/tantivy-*.whl
147
148
+ - name: Build and install pypaimon-rust from source
149
+ if: matrix.python-version != '3.6.15'
150
+ shell: bash
151
+ run: |
152
+ git clone https://github.com/apache/paimon-rust.git /tmp/paimon-rust
153
+ cd /tmp/paimon-rust/bindings/python
154
+ maturin build --release
155
+ pip install target/wheels/pypaimon_rust-*.whl
156
+ pip install 'datafusion>=52'
157
+
158
- name: Run lint-python.sh
159
shell: bash
160
run: |
0 commit comments