Skip to content

Commit

Permalink
Update badges, links, and some formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
atouchet authored and ritchie46 committed Sep 15, 2021
1 parent 1c0d56e commit bb3de77
Show file tree
Hide file tree
Showing 14 changed files with 33 additions and 33 deletions.
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ We love your input! We want to make contributing to this project as easy and tra
- Submitting a fix
- Adding/Proposing new features

## We Develop with Github
We use github to host code, to track issues and feature requests, as well as accept pull requests.
## We Develop with GitHub
We use GitHub to host code, to track issues and feature requests, as well as accept pull requests.

1. Fork the repo and create your branch from `master`.
2. If you've added code that should be tested, add tests.
Expand All @@ -18,14 +18,14 @@ We use github to host code, to track issues and feature requests, as well as acc

## Want to discuss something?
I can imagine that some questions don't fit an issue.
Therefore there is also a [chat on gitter](https://gitter.im/polars-rs/community).
Therefore there is also a [chat on Gitter](https://gitter.im/polars-rs/community).

## Any contributions you make will be under the MIT Software License
In short, when you submit code changes, your submissions are understood to be under the same
[MIT License](http://choosealicense.com/licenses/mit/) that covers the project.
[MIT License](https://choosealicense.com/licenses/mit/) that covers the project.
Feel free to contact the maintainers if that's a concern.

## Report bugs using Github's [issues](https://github.com/ritchie46/polars/issues)
## Report bugs using GitHub's [issues](https://github.com/pola-rs/polars/issues)
We use GitHub issues to track public bugs. Report a bug by [opening a new issue]().
**Great Bug Reports** tend to have:

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Polars
[![rust docs](https://docs.rs/polars/badge.svg)](https://docs.rs/polars/latest/polars/)
![Build and test](https://github.com/ritchie46/polars/workflows/Build%20and%20test/badge.svg)
[![](http://meritbadge.herokuapp.com/polars)](https://crates.io/crates/polars)
[![Build and test](https://github.com/ritchie46/polars/workflows/Build%20and%20test/badge.svg)](https://github.com/pola-rs/polars/actions)
[![](https://img.shields.io/crates/v/polars.svg)](https://crates.io/crates/polars)
[![Gitter](https://badges.gitter.im/polars-rs/community.svg)](https://gitter.im/polars-rs/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

## Blazingly fast DataFrames in Rust & Python
Expand Down Expand Up @@ -72,7 +72,7 @@ You can take latest release from `crates.io`, or if you want to use the latest f
point to the `master` branch of this repo.

```toml
polars = {git = "https://github.com/ritchie46/polars", rev = "<optional git tag>" }
polars = { git = "https://github.com/pola-rs/polars", rev = "<optional git tag>" }
```
## Rust version
Required Rust version `>=1.52`
Expand All @@ -96,14 +96,14 @@ Want to know about all the features Polars support? Read the docs!
* [Reference guide](https://pola-rs.github.io/polars/py-polars/html/reference/index.html)

## Contribution
Want to contribute? Read our [contribution guideline](https://github.com/ritchie46/polars/blob/master/CONTRIBUTING.md).
Want to contribute? Read our [contribution guideline](https://github.com/pola-rs/polars/blob/master/CONTRIBUTING.md).

## \[Python\] compile py-polars from source
If you want a bleeding edge release or maximal performance you should compile **py-polars** from source.

This can be done by going through the following steps in sequence:

1. install the latest [rust compiler](https://www.rust-lang.org/tools/install)
1. install the latest [Rust compiler](https://www.rust-lang.org/tools/install)
2. `$ pip3 install maturin`
4. Choose any of:
* Very long compile times, fastest binary: `$ cd py-polars && maturin develop --rustc-extra-args="-C target-cpu=native" --release`
Expand All @@ -122,8 +122,8 @@ There is still a maintained `arrow-rs` branch for users who want to use another
## Acknowledgements
Development of Polars is proudly powered by

[![Xomnia](https://raw.githubusercontent.com/ritchie46/img/master/polars/xomnia_logo.png)](https://www.xomnia.com)
[![Xomnia](https://raw.githubusercontent.com/ritchie46/img/master/polars/xomnia_logo.png)](https://www.xomnia.com/)

## Sponsors
* [Xomnia](https://www.xomnia.com)
* [Jetbrains](https://www.jetbrains.com/company/brand/img/jetbrains_logo.png)
* [Xomnia](https://www.xomnia.com/)
* [JetBrains](https://www.jetbrains.com/company/brand/img/jetbrains_logo.png)
6 changes: 3 additions & 3 deletions js-polars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name = "polars"
version = "0.0.1"
authors = ["Ritchie Vink"]
edition = "2018"
repository = "https://github.com/ritchie46/polars"
repository = "https://github.com/pola-rs/polars"
license = "MIT"
documentation = "https://ritchie46.github.io/polars-book/"
homepage = "https://github.com/ritchie46/polars"
documentation = "https://pola-rs.github.io/polars-book/"
homepage = "https://github.com/pola-rs/polars"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion polars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2018"
license = "MIT"
description = "DataFrame Library based on Apache Arrow"
repository = "https://github.com/ritchie46/polars"
repository = "https://github.com/pola-rs/polars"
readme = "../README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion polars/polars-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2018"
license = "MIT"
description = "Core of the Polars DataFrame library"
repository = "https://github.com/ritchie46/polars"
repository = "https://github.com/pola-rs/polars"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
10 changes: 5 additions & 5 deletions polars/polars-core/src/doc/changelog/v0_3.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
//! # Changelog v0.3
//!
//! * Utf8 type is nullable [#37](https://github.com/ritchie46/polars/issues/37)
//! * Support all ARROW numeric types [#40](https://github.com/ritchie46/polars/issues/40)
//! * Support all ARROW temporal types [#46](https://github.com/ritchie46/polars/issues/46)
//! * ARROW IPC Reader/ Writer [#50](https://github.com/ritchie46/polars/issues/50)
//! * Implement DoubleEndedIterator trait for ChunkedArray's [#34](https://github.com/ritchie46/polars/issues/34)
//! * Utf8 type is nullable [#37](https://github.com/pola-rs/polars/issues/37)
//! * Support all ARROW numeric types [#40](https://github.com/pola-rs/polars/issues/40)
//! * Support all ARROW temporal types [#46](https://github.com/pola-rs/polars/issues/46)
//! * ARROW IPC Reader/ Writer [#50](https://github.com/pola-rs/polars/issues/50)
//! * Implement DoubleEndedIterator trait for ChunkedArray's [#34](https://github.com/pola-rs/polars/issues/34)
//!
2 changes: 1 addition & 1 deletion polars/polars-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2018"
license = "MIT"
description = "IO related logic for the Polars DataFrame library"
repository = "https://github.com/ritchie46/polars"
repository = "https://github.com/pola-rs/polars"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion polars/polars-lazy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2018"
license = "MIT"
description = "Lazy query engine for the Polars DataFrame library"
repository = "https://github.com/ritchie46/polars"
repository = "https://github.com/pola-rs/polars"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::fs::canonicalize;

/// Optimization rule that prunes a join, if the latest operation could be merged and the rest of
/// the LP is equal.
// See: https://github.com/ritchie46/polars/issues/449
// See: https://github.com/pola-rs/polars/issues/449
pub struct JoinPrune {}

impl OptimizationRule for JoinPrune {
Expand Down
2 changes: 1 addition & 1 deletion polars/src/docs/performance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
//! operation like a FILTER, JOIN, GROUPBY, etc. than this can become quite expensive.
//!
//! ## Categorical type
//! For this reason Polars has a [CategoricalType](https://ritchie46.github.io/polars/polars/datatypes/struct.CategoricalType.html).
//! For this reason Polars has a [CategoricalType](https://pola-rs.github.io/polars/polars/datatypes/struct.CategoricalType.html).
//! A `CategoricalChunked` is an array filled with `u32` values that each represent a unique string value.
//! Thereby maintaining cache-efficiency, whilst also making it cheap to move values around.
//!
Expand Down
6 changes: 3 additions & 3 deletions py-polars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ version = "0.9.6-beta.1"
authors = ["ritchie46 <ritchie46@gmail.com>"]
edition = "2018"
readme = "README.md"
repository = "https://github.com/ritchie46/polars"
repository = "https://github.com/pola-rs/polars"
license = "MIT"
documentation = "https://ritchie46.github.io/polars-book/"
homepage = "https://github.com/ritchie46/polars"
documentation = "https://pola-rs.github.io/polars-book/"
homepage = "https://github.com/pola-rs/polars"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion py-polars/polars/internals/construction.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def _pandas_series_to_arrow(values: Union["pd.Series", "pd.DatetimeIndex"]) -> p
if dtype == "datetime64[ns]":
# We first cast to ms because that's the unit of Date64,
# Then we cast to via int64 to date64. Casting directly to Date64 lead to
# loss of time information https://github.com/ritchie46/polars/issues/476
# loss of time information https://github.com/pola-rs/polars/issues/476
arr = pa.array(np.array(values.values, dtype="datetime64[ms]"))
arr = pa.compute.cast(arr, pa.int64())
return pa.compute.cast(arr, pa.date64())
Expand Down
2 changes: 1 addition & 1 deletion py-polars/tests/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_read_web_file():

def test_parquet_chunks():
"""
This failed in https://github.com/ritchie46/polars/issues/545
This failed in https://github.com/pola-rs/polars/issues/545
"""
cases = [
1048576,
Expand Down
2 changes: 1 addition & 1 deletion py-polars/tests/test_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def test_shape():

def test_create_list_series():
pass
# may Segfault: see https://github.com/ritchie46/polars/issues/518
# may Segfault: see https://github.com/pola-rs/polars/issues/518
# a = [[1, 2], None, [None, 3]]
# s = pl.Series("", a)
# assert s.to_list() == a
Expand Down

0 comments on commit bb3de77

Please sign in to comment.