Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Joachim Rosskopf committed Jun 16, 2024
1 parent 6999518 commit f14a54e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_extension_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- id: parse-matrices
run: |
python3 ${{ inputs.matrix_parse_script }} --input ./duckdb/.github/config/distribution_matrix.json --deploy_matrix --output deploy_matrix.json --exclude "${{ inputs.exclude_archs }}" --pretty
python3 ${{ inputs.matrix_parse_script }} --input ./.github/config/distribution_matrix.json --deploy_matrix --output deploy_matrix.json --exclude "${{ inputs.exclude_archs }}" --pretty
deploy_matrix="`cat deploy_matrix.json`"
echo deploy_matrix=$deploy_matrix >> $GITHUB_OUTPUT
echo `cat $GITHUB_OUTPUT`
Expand Down
19 changes: 12 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ With ERPL, use Enterprise Data in your Data Science and ML pipelines within minu
Install with two lines of code in DuckDB (unsigned option must be set):

```
SET custom_extension_repository = 'http://get.erpl.io';
INSTALL erpl;
INSTALL 'erpl' FROM 'http://get.erpl.io';
LOAD 'erpl';
```


Expand Down Expand Up @@ -227,11 +227,16 @@ Choose the binary that matches your usage scenario. The table below summarizes t
| R | Windows | amd64 |
| Julia | Windows | amd64 |
| Node.js | Windows | amd64 |

### Note on OSX Support
Currently, we do not support OSX due to the unavailability of the SAP Netweaver RFC SDK for Apple Silicon. However, efforts are underway to enable compatibility via the x86 emulation layer, Rosetta.

This revised section aims to provide a clearer, more user-friendly explanation of how to acquire and choose the appropriate ERPL extension, along with a straightforward guide for those interested in building the extension themselves.
| DuckDB CLI | OSX | amd64 |
| Python | OSX | amd64 |
| R | OSX | amd64 |
| Julia | OSX | amd64 |
| Node.js | OSX | amd64 |
| DuckDB CLI | OSX | arm64 |
| Python | OSX | arm64 |
| R | OSX | arm64 |
| Julia | OSX | arm64 |
| Node.js | OSX | arm64 |

[Back to Top](#top)

Expand Down

0 comments on commit f14a54e

Please sign in to comment.