File tree Expand file tree Collapse file tree 3 files changed +46
-45
lines changed Expand file tree Collapse file tree 3 files changed +46
-45
lines changed Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " pyobsplot"
3
- version = " 0.5.3"
3
+ version = " 0.5.3.1 "
4
4
description = " Observable Plot in Jupyter notebooks and Quarto documents"
5
5
authors = [{
name =
" Julien Barnier" ,
email =
" [email protected] " }]
6
6
license = { file = " LICENSE" }
@@ -19,7 +19,7 @@ dependencies = [
19
19
" pandas>=2.0.0" ,
20
20
" polars>=1.4.1" ,
21
21
" requests" ,
22
- " pyarrow>=19.0.1 " ,
22
+ " pyarrow>=18.1.0 " ,
23
23
]
24
24
25
25
[optional-dependencies ]
Original file line number Diff line number Diff line change @@ -33376,7 +33376,7 @@ var StructRow = class {
33376
33376
constructor(parent, rowIndex) {
33377
33377
this[kParent] = parent;
33378
33378
this[kRowIndex] = rowIndex;
33379
- return new Proxy(this, new StructRowProxyHandler() );
33379
+ return new Proxy(this, structRowProxyHandler );
33380
33380
}
33381
33381
toArray() {
33382
33382
return Object.values(this.toJSON());
@@ -33446,10 +33446,10 @@ var StructRowProxyHandler = class {
33446
33446
return row[kParent].type.children.map((f) => f.name);
33447
33447
}
33448
33448
has(row, key) {
33449
- return row[kParent].type.children.findIndex ((f) => f.name === key) !== -1 ;
33449
+ return row[kParent].type.children.some ((f) => f.name === key);
33450
33450
}
33451
33451
getOwnPropertyDescriptor(row, key) {
33452
- if (row[kParent].type.children.findIndex ((f) => f.name === key) !== -1 ) {
33452
+ if (row[kParent].type.children.some ((f) => f.name === key)) {
33453
33453
return { writable: true, enumerable: true, configurable: true };
33454
33454
}
33455
33455
return;
@@ -33476,6 +33476,7 @@ var StructRowProxyHandler = class {
33476
33476
return false;
33477
33477
}
33478
33478
};
33479
+ var structRowProxyHandler = new StructRowProxyHandler();
33479
33480
33480
33481
// node_modules/apache-arrow/visitor/get.mjs
33481
33482
var GetVisitor = class extends Visitor {
You can’t perform that action at this time.
0 commit comments