build: bump dependencies

This commit is contained in:
2026-01-05 23:48:18 +08:00
parent beb8fd3e5b
commit 78adffd34d
5 changed files with 444 additions and 382 deletions

View File

@@ -1,11 +0,0 @@
import orjson as json
def main():
with open("players.json", "r", encoding="utf-8") as f:
d: list[dict[str, int | str]] = json.loads(f.read())
print(d[-1]["userId"])
if __name__ == "__main__":
main()

View File

@@ -5,7 +5,7 @@ import polars_hash as pl_hash
file = argv[1]
user_ids = (
pl.DataFrame({"user_id_num": range(11000000, 13000001)})
pl.DataFrame({"user_id_num": range(11000000, 14000001)})
.with_columns(
pl.col("user_id_num")
.cast(pl.String)