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

chore: Update dprint hook versions and enable JSON linting #16611

Merged
merged 2 commits into from
May 31, 2024
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
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,19 @@ version = "0.40.0"
authors = ["Ritchie Vink <[email protected]>"]
edition = "2021"
homepage = "https://www.pola.rs/"
repository = "https://github.com/pola-rs/polars"
license = "MIT"
repository = "https://github.com/pola-rs/polars"

[workspace.dependencies]
aho-corasick = "1.1"
ahash = ">=0.8.5"
aho-corasick = "1.1"
arboard = { version = "3.4.0", default-features = false }
arrow-array = { version = ">=41", default-features = false }
arrow-buffer = { version = ">=41", default-features = false }
arrow-data = { version = ">=41", default-features = false }
arrow-schema = { version = ">=41", default-features = false }
atoi = "2"
atoi_simd = "0.15.5"
avro-schema = { version = "0.3" }
base64 = "0.22.0"
bitflags = "2"
Expand All @@ -41,15 +43,14 @@ crossbeam-queue = "0.3"
either = "1.11"
ethnum = "1.3.2"
fallible-streaming-iterator = "0.1.9"
fast-float = { version = "0.2" }
flate2 = { version = "1", default-features = false }
futures = "0.3.25"
hashbrown = { version = "0.14", features = ["rayon", "ahash", "serde"] }
hex = "0.4.3"
indexmap = { version = "2", features = ["std"] }
itoa = "1.0.6"
itoap = { version = "1", features = ["simd"] }
atoi_simd = "0.15.5"
fast-float = { version = "0.2" }
memchr = "2.6"
multiversion = "0.7"
ndarray = { version = "0.15", default-features = false }
Expand All @@ -62,10 +63,10 @@ rand = "0.8"
rand_distr = "0.4"
raw-cpuid = "11"
rayon = "1.9"
recursive = "0.1"
regex = "1.9"
reqwest = { version = "0.11", default-features = false }
ryu = "1.0.13"
recursive = "0.1"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1"
simd-json = { version = "0.13", features = ["known-key"] }
Expand All @@ -81,16 +82,16 @@ tokio = "1.26"
tokio-util = "0.7.8"
unicode-reverse = "1.0.8"
url = "2.4"
uuid = { version = "1.7.0", features = ["v4"] }
version_check = "0.9.4"
xxhash-rust = { version = "0.8.6", features = ["xxh3"] }
zstd = "0.13"
uuid = { version = "1.7.0", features = ["v4"] }
arboard = { version = "3.4.0", default-features = false }

polars = { version = "0.40.0", path = "crates/polars", default-features = false }
polars-compute = { version = "0.40.0", path = "crates/polars-compute", default-features = false }
polars-core = { version = "0.40.0", path = "crates/polars-core", default-features = false }
polars-error = { version = "0.40.0", path = "crates/polars-error", default-features = false }
polars-expr = { version = "0.40.0", path = "crates/polars-expr", default-features = false }
polars-ffi = { version = "0.40.0", path = "crates/polars-ffi", default-features = false }
polars-io = { version = "0.40.0", path = "crates/polars-io", default-features = false }
polars-json = { version = "0.40.0", path = "crates/polars-json", default-features = false }
Expand All @@ -103,7 +104,6 @@ polars-row = { version = "0.40.0", path = "crates/polars-row", default-features
polars-sql = { version = "0.40.0", path = "crates/polars-sql", default-features = false }
polars-time = { version = "0.40.0", path = "crates/polars-time", default-features = false }
polars-utils = { version = "0.40.0", path = "crates/polars-utils", default-features = false }
polars-expr = { version = "0.40.0", path = "crates/polars-expr", default-features = false }

[workspace.dependencies.arrow-format]
package = "polars-arrow-format"
Expand Down
68 changes: 34 additions & 34 deletions docs/development/contributing/ide.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ For it to work well for the Polars code base, add the following settings to your

```json
{
"rust-analyzer.cargo.features": "all",
"rust-analyzer.cargo.features": "all"
}
```

Expand All @@ -32,7 +32,7 @@ This will make it use the correct Ruff version and configuration.

```json
{
"ruff.importStrategy": "fromEnvironment",
"ruff.importStrategy": "fromEnvironment"
}
```

Expand All @@ -57,38 +57,38 @@ See the [official VSCode documentation](https://code.visualstudio.com/docs/edito

```json
{
"configurations": [
{
"name": "Debug Rust/Python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/py-polars/debug/launch.py",
"args": [
"${file}"
],
"console": "internalConsole",
"justMyCode": true,
"serverReadyAction": {
"pattern": "pID = ([0-9]+)",
"action": "startDebugging",
"name": "Rust LLDB"
}
},
{
"name": "Rust LLDB",
"pid": "0",
"type": "lldb",
"request": "attach",
"program": "${workspaceFolder}/py-polars/.venv/bin/python",
"stopOnEntry": false,
"sourceLanguages": [
"rust"
],
"presentation": {
"hidden": true
}
}
]
"configurations": [
{
"name": "Debug Rust/Python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/py-polars/debug/launch.py",
"args": [
"${file}"
],
"console": "internalConsole",
"justMyCode": true,
"serverReadyAction": {
"pattern": "pID = ([0-9]+)",
"action": "startDebugging",
"name": "Rust LLDB"
}
},
{
"name": "Rust LLDB",
"pid": "0",
"type": "lldb",
"request": "attach",
"program": "${workspaceFolder}/py-polars/.venv/bin/python",
"stopOnEntry": false,
"sourceLanguages": [
"rust"
],
"presentation": {
"hidden": true
}
}
]
}
```

Expand Down
15 changes: 8 additions & 7 deletions docs/mlc-config.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"ignorePatterns": [
{
"pattern": "^https://crates.io/"
},{
"pattern": "^https://stackoverflow.com/"
}
]
"ignorePatterns": [
{
"pattern": "^https://crates.io/"
},
{
"pattern": "^https://stackoverflow.com/"
}
]
}
32 changes: 17 additions & 15 deletions dprint.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
{
"includes": [
"**/*.{md,toml}"
],
"excludes": [
".venv/",
"**/target/",
"py-polars/.hypothesis/",
"py-polars/.mypy_cache/",
"py-polars/.pytest_cache/",
"py-polars/.ruff_cache/"
],
"plugins": [
"https://plugins.dprint.dev/markdown-0.16.2.wasm",
"https://plugins.dprint.dev/toml-0.5.4.wasm"
]
"includes": [
"**/*.{md,toml,json}"
],
"excludes": [
".venv/",
"**/target/",
"py-polars/.hypothesis/",
"py-polars/.mypy_cache/",
"py-polars/.pytest_cache/",
"py-polars/.ruff_cache/",
"py-polars/tests/unit/io/files/"
],
"plugins": [
"https://plugins.dprint.dev/json-0.19.3.wasm",
"https://plugins.dprint.dev/markdown-0.17.1.wasm",
"https://plugins.dprint.dev/toml-0.6.2.wasm"
]
}
42 changes: 21 additions & 21 deletions py-polars/docs/source/_static/version_switcher.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[
{
"name": "dev",
"version": "dev",
"url": "https://docs.pola.rs/docs/python/dev/"
},
{
"name": "0.20 (stable)",
"version": "0.20",
"url": "https://docs.pola.rs/py-polars/html/",
"preferred": true
},
{
"name": "0.19",
"version": "0.19",
"url": "https://docs.pola.rs/docs/python/version/0.19/"
},
{
"name": "0.18",
"version": "0.18",
"url": "https://docs.pola.rs/docs/python/version/0.18/"
}
{
"name": "dev",
"version": "dev",
"url": "https://docs.pola.rs/docs/python/dev/"
},
{
"name": "0.20 (stable)",
"version": "0.20",
"url": "https://docs.pola.rs/py-polars/html/",
"preferred": true
},
{
"name": "0.19",
"version": "0.19",
"url": "https://docs.pola.rs/docs/python/version/0.19/"
},
{
"name": "0.18",
"version": "0.18",
"url": "https://docs.pola.rs/docs/python/version/0.18/"
}
]