diff --git a/.github/workflows/_extension_deploy.yml b/.github/workflows/_extension_deploy.yml index fc71f1c..c7f4250 100644 --- a/.github/workflows/_extension_deploy.yml +++ b/.github/workflows/_extension_deploy.yml @@ -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` diff --git a/README.md b/README.md index 4965f61..477325c 100644 --- a/README.md +++ b/README.md @@ -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'; ``` @@ -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)