polars-df 0.10.0-arm64-darwin → 0.11.0-arm64-darwin

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 58967e39b49982a54b2462968b45add2c1f369178c76d58db5a4e543ac7c1ff9
4
- data.tar.gz: 11ea7db4521a68e3d78f5ab56685a4e41037d0257e1dccd367c1d6896c4cc9c9
3
+ metadata.gz: 4a7b9cb93cfbbd3673fcfd9355444ee301e8c6d5b71e3ce253cd2825b3c9654d
4
+ data.tar.gz: 1695e92272fcd9b631c349945f75cfba89f6cd4b628e10d51e5ef6d34706d0c8
5
5
  SHA512:
6
- metadata.gz: 4706b23f75c34c795da1ef4e81edc97bc0584e9193d0298b8ca3b302e523346e2f9ea32c53c1a6c601b810bd8c4630f5516e95de64fe9160290456a59bbe1ce3
7
- data.tar.gz: 6b4cd6363362e5feb22e14ebcdd5272323b38ffc9c5dd97c33f704fa1b2b2ae298f96e3d6a36059d0f60cb918560a47cbc33c58957f6bb830b77ccd2e52ffaaf
6
+ metadata.gz: f0480ec15ee2b58b8bbb5a63dc1d42b7f160c2a5903876bbff02f404a41f5a6b0e8ad0a771d936878e3f2f3f4104fdc25d06a34532f2d077f31ffdab34acf950
7
+ data.tar.gz: 5d3c8c35435a8f3b13998c28fab430db896b818d33573173e2c8d0d9b8747f1145f0e703f06f10434adfabf4f4b2637b1e3ec5799173af8fa35862c5b3dfb89c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## 0.11.0 (2024-06-02)
2
+
3
+ - Updated Polars to 0.40.0
4
+ - Added `date_ranges` method to `Polars`
5
+ - Added `read_ipc_stream` method to `Polars`
6
+ - Added `write_ipc_stream` to `DataFrame`
7
+ - Added `flags` method to `DataFrame`
8
+ - Added support for keyword arguments to `agg` methods
9
+ - Aliased `apply` to `map_rows` for `DataFrame`
10
+ - Changed default `name` for `with_row_index` from `row_nr` to `index`
11
+
1
12
  ## 0.10.0 (2024-05-02)
2
13
 
3
14
  - Updated Polars to 0.39.2
data/Cargo.lock CHANGED
@@ -181,9 +181,9 @@ dependencies = [
181
181
 
182
182
  [[package]]
183
183
  name = "base64"
184
- version = "0.21.5"
184
+ version = "0.22.1"
185
185
  source = "registry+https://github.com/rust-lang/crates.io-index"
186
- checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
186
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
187
187
 
188
188
  [[package]]
189
189
  name = "bindgen"
@@ -222,9 +222,9 @@ dependencies = [
222
222
 
223
223
  [[package]]
224
224
  name = "brotli"
225
- version = "3.4.0"
225
+ version = "5.0.0"
226
226
  source = "registry+https://github.com/rust-lang/crates.io-index"
227
- checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f"
227
+ checksum = "19483b140a7ac7174d34b5a581b406c64f84da5409d3e09cf4fff604f9270e67"
228
228
  dependencies = [
229
229
  "alloc-no-stdlib",
230
230
  "alloc-stdlib",
@@ -233,9 +233,9 @@ dependencies = [
233
233
 
234
234
  [[package]]
235
235
  name = "brotli-decompressor"
236
- version = "2.5.1"
236
+ version = "4.0.0"
237
237
  source = "registry+https://github.com/rust-lang/crates.io-index"
238
- checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
238
+ checksum = "e6221fe77a248b9117d431ad93761222e1cf8ff282d9d1d5d9f53d6299a1cf76"
239
239
  dependencies = [
240
240
  "alloc-no-stdlib",
241
241
  "alloc-stdlib",
@@ -354,7 +354,7 @@ checksum = "7c64043d6c7b7a4c58e39e7efccfdea7b93d885a795d0c054a69dbbf4dd52686"
354
354
  dependencies = [
355
355
  "crossterm",
356
356
  "strum",
357
- "strum_macros",
357
+ "strum_macros 0.25.3",
358
358
  "unicode-width",
359
359
  ]
360
360
 
@@ -469,9 +469,12 @@ checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d"
469
469
 
470
470
  [[package]]
471
471
  name = "either"
472
- version = "1.9.0"
472
+ version = "1.12.0"
473
473
  source = "registry+https://github.com/rust-lang/crates.io-index"
474
- checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
474
+ checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b"
475
+ dependencies = [
476
+ "serde",
477
+ ]
475
478
 
476
479
  [[package]]
477
480
  name = "enum_dispatch"
@@ -676,6 +679,7 @@ dependencies = [
676
679
  "ahash",
677
680
  "allocator-api2",
678
681
  "rayon",
682
+ "serde",
679
683
  ]
680
684
 
681
685
  [[package]]
@@ -966,9 +970,9 @@ dependencies = [
966
970
 
967
971
  [[package]]
968
972
  name = "magnus"
969
- version = "0.6.3"
973
+ version = "0.6.4"
970
974
  source = "registry+https://github.com/rust-lang/crates.io-index"
971
- checksum = "0fc7a31fb0b64761e3cd09a6975577601fccc5f08b8fc9245064fc4f71ed6a9d"
975
+ checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
972
976
  dependencies = [
973
977
  "magnus-macros",
974
978
  "rb-sys",
@@ -1089,9 +1093,9 @@ dependencies = [
1089
1093
 
1090
1094
  [[package]]
1091
1095
  name = "num-traits"
1092
- version = "0.2.17"
1096
+ version = "0.2.19"
1093
1097
  source = "registry+https://github.com/rust-lang/crates.io-index"
1094
- checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
1098
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1095
1099
  dependencies = [
1096
1100
  "autocfg",
1097
1101
  "libm",
@@ -1243,7 +1247,7 @@ dependencies = [
1243
1247
 
1244
1248
  [[package]]
1245
1249
  name = "polars"
1246
- version = "0.10.0"
1250
+ version = "0.11.0"
1247
1251
  dependencies = [
1248
1252
  "ahash",
1249
1253
  "chrono",
@@ -1251,7 +1255,7 @@ dependencies = [
1251
1255
  "jemallocator",
1252
1256
  "magnus",
1253
1257
  "mimalloc",
1254
- "polars 0.39.2",
1258
+ "polars 0.40.0",
1255
1259
  "polars-core",
1256
1260
  "polars-parquet",
1257
1261
  "polars-utils",
@@ -1261,9 +1265,9 @@ dependencies = [
1261
1265
 
1262
1266
  [[package]]
1263
1267
  name = "polars"
1264
- version = "0.39.2"
1268
+ version = "0.40.0"
1265
1269
  source = "registry+https://github.com/rust-lang/crates.io-index"
1266
- checksum = "0ea21b858b16b9c0e17a12db2800d11aa5b4bd182be6b3022eb537bbfc1f2db5"
1270
+ checksum = "e148396dca5496566880fa19374f3f789a29db94e3eb458afac1497b4bac5442"
1267
1271
  dependencies = [
1268
1272
  "getrandom",
1269
1273
  "polars-arrow",
@@ -1282,9 +1286,9 @@ dependencies = [
1282
1286
 
1283
1287
  [[package]]
1284
1288
  name = "polars-arrow"
1285
- version = "0.39.2"
1289
+ version = "0.40.0"
1286
1290
  source = "registry+https://github.com/rust-lang/crates.io-index"
1287
- checksum = "725b09f2b5ef31279b66e27bbab63c58d49d8f6696b66b1f46c7eaab95e80f75"
1291
+ checksum = "1cb5e11cd0752ae022fa6ca3afa50a14b0301b7ce53c0135828fbb0f4fa8303e"
1288
1292
  dependencies = [
1289
1293
  "ahash",
1290
1294
  "atoi",
@@ -1330,9 +1334,9 @@ dependencies = [
1330
1334
 
1331
1335
  [[package]]
1332
1336
  name = "polars-compute"
1333
- version = "0.39.2"
1337
+ version = "0.40.0"
1334
1338
  source = "registry+https://github.com/rust-lang/crates.io-index"
1335
- checksum = "a796945b14b14fbb79b91ef0406e6fddca2be636e889f81ea5d6ee7d36efb4fe"
1339
+ checksum = "89fc4578f826234cdecb782952aa9c479dc49373f81694a7b439c70b6f609ba0"
1336
1340
  dependencies = [
1337
1341
  "bytemuck",
1338
1342
  "either",
@@ -1346,9 +1350,9 @@ dependencies = [
1346
1350
 
1347
1351
  [[package]]
1348
1352
  name = "polars-core"
1349
- version = "0.39.2"
1353
+ version = "0.40.0"
1350
1354
  source = "registry+https://github.com/rust-lang/crates.io-index"
1351
- checksum = "465f70d3e96b6d0b1a43c358ba451286b8c8bd56696feff020d65702aa33e35c"
1355
+ checksum = "e490c6bace1366a558feea33d1846f749a8ca90bd72a6748752bc65bb4710b2a"
1352
1356
  dependencies = [
1353
1357
  "ahash",
1354
1358
  "bitflags 2.4.1",
@@ -1380,9 +1384,9 @@ dependencies = [
1380
1384
 
1381
1385
  [[package]]
1382
1386
  name = "polars-error"
1383
- version = "0.39.2"
1387
+ version = "0.40.0"
1384
1388
  source = "registry+https://github.com/rust-lang/crates.io-index"
1385
- checksum = "5224d5d05e6b8a6f78b75951ae1b5f82c8ab1979e11ffaf5fd41941e3d5b0757"
1389
+ checksum = "08888f58e61599b00f5ea0c2ccdc796b54b9859559cc0d4582733509451fa01a"
1386
1390
  dependencies = [
1387
1391
  "avro-schema",
1388
1392
  "polars-arrow-format",
@@ -1391,11 +1395,31 @@ dependencies = [
1391
1395
  "thiserror",
1392
1396
  ]
1393
1397
 
1398
+ [[package]]
1399
+ name = "polars-expr"
1400
+ version = "0.40.0"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "4173591920fe56ad55af025f92eb0d08421ca85705c326a640c43856094e3484"
1403
+ dependencies = [
1404
+ "ahash",
1405
+ "bitflags 2.4.1",
1406
+ "once_cell",
1407
+ "polars-arrow",
1408
+ "polars-core",
1409
+ "polars-io",
1410
+ "polars-ops",
1411
+ "polars-plan",
1412
+ "polars-time",
1413
+ "polars-utils",
1414
+ "rayon",
1415
+ "smartstring",
1416
+ ]
1417
+
1394
1418
  [[package]]
1395
1419
  name = "polars-io"
1396
- version = "0.39.2"
1420
+ version = "0.40.0"
1397
1421
  source = "registry+https://github.com/rust-lang/crates.io-index"
1398
- checksum = "b2c8589e418cbe4a48228d64b2a8a40284a82ec3c98817c0c2bcc0267701338b"
1422
+ checksum = "5842896aea46d975b425d63f156f412aed3cfde4c257b64fb1f43ceea288074e"
1399
1423
  dependencies = [
1400
1424
  "ahash",
1401
1425
  "async-trait",
@@ -1433,9 +1457,9 @@ dependencies = [
1433
1457
 
1434
1458
  [[package]]
1435
1459
  name = "polars-json"
1436
- version = "0.39.2"
1460
+ version = "0.40.0"
1437
1461
  source = "registry+https://github.com/rust-lang/crates.io-index"
1438
- checksum = "81224492a649a12b668480c0cf219d703f432509765d2717e72fe32ad16fc701"
1462
+ checksum = "160cbad0145b93ac6a88639aadfa6f7d7c769d05a8674f9b7e895b398cae9901"
1439
1463
  dependencies = [
1440
1464
  "ahash",
1441
1465
  "chrono",
@@ -1454,9 +1478,9 @@ dependencies = [
1454
1478
 
1455
1479
  [[package]]
1456
1480
  name = "polars-lazy"
1457
- version = "0.39.2"
1481
+ version = "0.40.0"
1458
1482
  source = "registry+https://github.com/rust-lang/crates.io-index"
1459
- checksum = "89b2632b1af668e2058d5f8f916d8fbde3cac63d03ae29a705f598e41dcfeb7f"
1483
+ checksum = "e805ea2ebbc6b7749b0afb31b7fc5d32b42b57ba29b984549d43d3a16114c4a5"
1460
1484
  dependencies = [
1461
1485
  "ahash",
1462
1486
  "bitflags 2.4.1",
@@ -1464,6 +1488,7 @@ dependencies = [
1464
1488
  "once_cell",
1465
1489
  "polars-arrow",
1466
1490
  "polars-core",
1491
+ "polars-expr",
1467
1492
  "polars-io",
1468
1493
  "polars-json",
1469
1494
  "polars-ops",
@@ -1478,9 +1503,9 @@ dependencies = [
1478
1503
 
1479
1504
  [[package]]
1480
1505
  name = "polars-ops"
1481
- version = "0.39.2"
1506
+ version = "0.40.0"
1482
1507
  source = "registry+https://github.com/rust-lang/crates.io-index"
1483
- checksum = "efdbdb4d9a92109bc2e0ce8e17af5ae8ab643bb5b7ee9d1d74f0aeffd1fbc95f"
1508
+ checksum = "7b0aed7e169c81b98457641cf82b251f52239a668916c2e683abd1f38df00d58"
1484
1509
  dependencies = [
1485
1510
  "ahash",
1486
1511
  "aho-corasick",
@@ -1515,9 +1540,9 @@ dependencies = [
1515
1540
 
1516
1541
  [[package]]
1517
1542
  name = "polars-parquet"
1518
- version = "0.39.2"
1543
+ version = "0.40.0"
1519
1544
  source = "registry+https://github.com/rust-lang/crates.io-index"
1520
- checksum = "b421d2196f786fdfe162db614c8485f8308fe41575d4de634a39bbe460d1eb6a"
1545
+ checksum = "c70670a9e51cac66d0e77fd20b5cc957dbcf9f2660d410633862bb72f846d5b8"
1521
1546
  dependencies = [
1522
1547
  "ahash",
1523
1548
  "async-stream",
@@ -1541,9 +1566,9 @@ dependencies = [
1541
1566
 
1542
1567
  [[package]]
1543
1568
  name = "polars-pipe"
1544
- version = "0.39.2"
1569
+ version = "0.40.0"
1545
1570
  source = "registry+https://github.com/rust-lang/crates.io-index"
1546
- checksum = "48700f1d5bd56a15451e581f465c09541492750360f18637b196f995470a015c"
1571
+ checksum = "0a40ae1b3c74ee07e2d1f7cbf56c5d6e15969e45d9b6f0903bd2acaf783ba436"
1547
1572
  dependencies = [
1548
1573
  "crossbeam-channel",
1549
1574
  "crossbeam-queue",
@@ -1553,6 +1578,7 @@ dependencies = [
1553
1578
  "polars-arrow",
1554
1579
  "polars-compute",
1555
1580
  "polars-core",
1581
+ "polars-expr",
1556
1582
  "polars-io",
1557
1583
  "polars-ops",
1558
1584
  "polars-plan",
@@ -1566,14 +1592,15 @@ dependencies = [
1566
1592
 
1567
1593
  [[package]]
1568
1594
  name = "polars-plan"
1569
- version = "0.39.2"
1595
+ version = "0.40.0"
1570
1596
  source = "registry+https://github.com/rust-lang/crates.io-index"
1571
- checksum = "2fb8e2302e20c44defd5be8cad9c96e75face63c3a5f609aced8c4ec3b3ac97d"
1597
+ checksum = "8daa3541ae7e9af311a4389bc2b21f83349c34c723cc67fa524cdefdaa172d90"
1572
1598
  dependencies = [
1573
1599
  "ahash",
1574
1600
  "bytemuck",
1575
1601
  "chrono",
1576
1602
  "chrono-tz",
1603
+ "either",
1577
1604
  "hashbrown 0.14.3",
1578
1605
  "once_cell",
1579
1606
  "percent-encoding",
@@ -1590,15 +1617,15 @@ dependencies = [
1590
1617
  "regex",
1591
1618
  "serde",
1592
1619
  "smartstring",
1593
- "strum_macros",
1620
+ "strum_macros 0.26.2",
1594
1621
  "version_check",
1595
1622
  ]
1596
1623
 
1597
1624
  [[package]]
1598
1625
  name = "polars-row"
1599
- version = "0.39.2"
1626
+ version = "0.40.0"
1600
1627
  source = "registry+https://github.com/rust-lang/crates.io-index"
1601
- checksum = "a515bdc68c2ae3702e3de70d89601f3b71ca8137e282a226dddb53ee4bacfa2e"
1628
+ checksum = "deb285f2f3a65b00dd06bef16bb9f712dbb5478f941dab5cf74f9f016d382e40"
1602
1629
  dependencies = [
1603
1630
  "bytemuck",
1604
1631
  "polars-arrow",
@@ -1608,11 +1635,12 @@ dependencies = [
1608
1635
 
1609
1636
  [[package]]
1610
1637
  name = "polars-sql"
1611
- version = "0.39.2"
1638
+ version = "0.40.0"
1612
1639
  source = "registry+https://github.com/rust-lang/crates.io-index"
1613
- checksum = "7b4bb7cc1c04c3023d1953b2f1dec50515e8fd8169a5a2bf4967b3b082232db7"
1640
+ checksum = "a724f699d194cb02c25124d3832f7d4d77f387f1a89ee42f6b9e88ec561d4ad9"
1614
1641
  dependencies = [
1615
1642
  "hex",
1643
+ "once_cell",
1616
1644
  "polars-arrow",
1617
1645
  "polars-core",
1618
1646
  "polars-error",
@@ -1626,11 +1654,12 @@ dependencies = [
1626
1654
 
1627
1655
  [[package]]
1628
1656
  name = "polars-time"
1629
- version = "0.39.2"
1657
+ version = "0.40.0"
1630
1658
  source = "registry+https://github.com/rust-lang/crates.io-index"
1631
- checksum = "efc18e3ad92eec55db89d88f16c22d436559ba7030cf76f86f6ed7a754b673f1"
1659
+ checksum = "87ebec238d8b6200d9f0c3ce411c8441e950bd5a7df7806b8172d06c1d5a4b97"
1632
1660
  dependencies = [
1633
1661
  "atoi",
1662
+ "bytemuck",
1634
1663
  "chrono",
1635
1664
  "chrono-tz",
1636
1665
  "now",
@@ -1647,9 +1676,9 @@ dependencies = [
1647
1676
 
1648
1677
  [[package]]
1649
1678
  name = "polars-utils"
1650
- version = "0.39.2"
1679
+ version = "0.40.0"
1651
1680
  source = "registry+https://github.com/rust-lang/crates.io-index"
1652
- checksum = "c760b6c698cfe2fbbbd93d6cfb408db14ececfe1d92445dae2229ce1b5b21ae8"
1681
+ checksum = "34e1a907c63abf71e5f21467e2e4ff748896c28196746f631c6c25512ec6102c"
1653
1682
  dependencies = [
1654
1683
  "ahash",
1655
1684
  "bytemuck",
@@ -2103,6 +2132,19 @@ dependencies = [
2103
2132
  "syn 2.0.46",
2104
2133
  ]
2105
2134
 
2135
+ [[package]]
2136
+ name = "strum_macros"
2137
+ version = "0.26.2"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
2140
+ dependencies = [
2141
+ "heck",
2142
+ "proc-macro2",
2143
+ "quote",
2144
+ "rustversion",
2145
+ "syn 2.0.46",
2146
+ ]
2147
+
2106
2148
  [[package]]
2107
2149
  name = "syn"
2108
2150
  version = "1.0.109"