Skip to content

Commit

Permalink
chore: update dependabot settings and readme links (#294)
Browse files Browse the repository at this point in the history
- Fix dependabot settings
- Update links for download badges and daft doc in README.md
  • Loading branch information
xushiyan authored Feb 3, 2025
1 parent 8ee3b13 commit 410ca7d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
16 changes: 9 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,27 @@
# specific language governing permissions and limitations
# under the License.

# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: pip
directory: /
directory: "/python"
schedule:
interval: weekly
reviewers:
- "xushiyan"

- package-ecosystem: cargo
directory: /
schedule:
interval: weekly
reviewers:
- "xushiyan"
ignore:
# we manually review and update arrow and datafusion dependencies
- dependency-name: "arrow*"
- dependency-name: "parquet"
- dependency-name: "datafusion*"

- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
reviewers:
- "xushiyan"
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,15 @@
The `hudi-rs` project aims to broaden the use of [Apache Hudi](https://github.com/apache/hudi) for a diverse range of
users and projects.

| Source | Installation Command |
|---------------|----------------------|
| **PyPi** | `pip install hudi` |
| **Crates.io** | `cargo add hudi` |
| Source | Downloads | Installation Command |
|-------------------------|-----------------------------|----------------------|
| [**PyPi.org**][pypi] | [![][pypi-badge]][pypi] | `pip install hudi` |
| [**Crates.io**][crates] | [![][crates-badge]][crates] | `cargo add hudi` |

[pypi]: https://pypi.org/project/hudi/
[pypi-badge]: https://img.shields.io/pypi/dm/hudi?style=flat-square&color=51AEF3
[crates]: https://crates.io/crates/hudi
[crates-badge]: https://img.shields.io/crates/d/hudi?style=flat-square&color=163669

## Usage Examples

Expand Down Expand Up @@ -238,7 +243,7 @@ async fn main() -> Result<()> {

Hudi is also integrated with

- [Daft](https://www.getdaft.io/projects/docs/en/stable/user_guide/integrations/hudi.html)
- [Daft](https://www.getdaft.io/projects/docs/en/stable/integrations/hudi/)
- [Ray](https://docs.ray.io/en/latest/data/api/doc/ray.data.read_hudi.html#ray.data.read_hudi)

### Work with cloud storage
Expand Down

0 comments on commit 410ca7d

Please sign in to comment.