Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: can't install from CRAN now #333

Merged
merged 3 commits into from
Jul 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Package: polars
Title: Lightning-Fast 'DataFrame' Library
Version: 0.7.0
Version: 0.7.0.9000
Depends: R (>= 4.1.0)
Imports: utils, codetools
Authors@R:
c(person("Ritchie", "Vink", , "[email protected]", role = c("aut")),
person("Soren", "Welling", , "[email protected]", role = c("aut")),
person("Tatsuya", "Shima", , "[email protected]", role = c("aut", "cre")),
person("Soren", "Welling", , "[email protected]", role = c("aut", "cre")),
person("Tatsuya", "Shima", , "[email protected]", role = c("aut")),
person("Etienne", "Bacher", , "[email protected]", role = c("ctb")))
Description: Lightning-fast 'DataFrame' library written in 'Rust'. Convert R data
to 'Polars' data and vice versa. Perform fast, lazy, larger-than-memory and
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# polars (development version)

# polars 0.7.0

## BREAKING CHANGES
Expand Down
6 changes: 5 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,12 @@ additional help and discussion.

## Install

The package can be installed from CRAN, R-universe, or GitHub.
The package can be installed from R-universe, or GitHub.

Some platforms can install pre-compiled binaries, and others will need to build from source.

````{comment}

### CRAN

CRAN provides pre-compiled binaries for Windows (x86_64) and macOS.
Expand All @@ -59,6 +61,8 @@ Binary packages on CRAN are compiled by stable Rust, with nightly features disab
install.packages("polars")
```

````

### R-universe

[R-universe](https://rpolars.r-universe.dev/polars#install) provides
Expand Down
13 changes: 1 addition & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,11 @@ Consider joining our [Discord](https://discord.com/invite/4UfP5cfBE7)

## Install

The package can be installed from CRAN, R-universe, or GitHub.
The package can be installed from R-universe, or GitHub.

Some platforms can install pre-compiled binaries, and others will need
to build from source.

### CRAN

CRAN provides pre-compiled binaries for Windows (x86_64) and macOS.

Binary packages on CRAN are compiled by stable Rust, with nightly
features disabled.

``` r
install.packages("polars")
```

### R-universe

[R-universe](https://rpolars.r-universe.dev/polars#install) provides
Expand Down