Larry Z.
Larry Z.
Same issue. The app is randomly prompting read time out.
I made a new one which works with the new [Summary](https://github.blog/2022-05-09-supercharging-github-actions-with-job-summaries/) in GitHub Actions. It also with all modules if they are located under the same repo. You can find...
I seem to have the same issue. The log displays "The bot is currently slow. Maybe he is stuck. Trying to restart!" even though I checked the player can catch...
Thanks! I'm on 1.21. The list of client mods I have ``` AdvancedBackups-fabric-1.21-3.6.jar fabric-api-0.102.1+1.21.1.jar jei-1.21-fabric-19.8.2.99.jar offers-hud-1.21-1.6.1.jar Resourcify (1.21+-fabric)-1.4.0.jar fabric-language-kotlin-1.11.0+kotlin.2.0.0.jar litematica-fabric-1.21-0.19.0.jar sodium-fabric-0.5.11+mc1.21.jar Xaeros_Minimap_24.3.0_Fabric_1.21.jar iris-1.7.3+mc1.21.jar malilib-fabric-1.21-0.20.0.jar tweakeroo-fabric-1.21-0.20.999-sakura.24.jar appleskin-fabric-mc1.21-3.0.5.jar itemscroller-fabric-1.21-0.23.999-sakura.7.jar minihud-fabric-1.21-0.31.999-sakura.20.jar ``` The...
Python 3.13 seems to be supported with the new 0.22 release of PyO3 https://github.com/PyO3/pyo3/releases/tag/v0.22.0 Would this be enough to make rpds compatible? Would love to help if possible :)
Thanks for the information! I'll take a look later this week :)
PyO3 removes the `Clone` trait on `PyObject` by default. We can re-enable it by adding [`py-clone` feature on PyO3](https://pyo3.rs/v0.22.0/migration.html#pyclone-is-now-gated-behind-the-py-clone-feature). But the side effect of `py-clone` is that when `clone` is...
Thanks for the quick reply! We will discuss in the PR thread and will let you know when it's ready. Yes, GitHub doesn't have a GIL-less CPython CI for now...
I can open a PR implementing `__hash__` for list! I'm not sure how to implement hash for the `HashTrieMap` and `HashTrieSet` since sequence matters when building a hash from a...
I just wrote something for `__hash__` [here](https://github.com/FlickerSoul/rpds/compare/dev...FlickerSoul:rpds:__hash__). I'm curious what you think :) Thanks!