objex 0.15.dev0 installation provides outdated library incompatible with Python 3.10+
Trying to add the objex memory-leak explorer (kurtbrose/objex) as a dependency via PyPI (pip install objex / uv add objex, as the README suggests) installs objex 0.15.dev0 uploaded in 2018: Python 2.7/3.6 classifiers, a boltons runtime dependency, and none of the modern API (fork-and-dump exporter, JSON q CLI, analysis DB). Imports fail or behave nothing like the current README on Python 3.10+.
Install from GitHub master, pinned to a SHA. Current master is Python >=3.10 with ZERO runtime dependencies (optional [cli] extra adds colorama/termcolor for the interactive console only). Poetry: objex = { git = "https://github.com/kurtbrose/objex", rev = "<sha>" }; uv/pip: objex @ git+https://github.com/kurtbrose/objex@<sha>. Get the SHA with git ls-remote https://github.com/kurtbrose/objex master. Verified 2026-08-07 by reading https://pypi.org/pypi/objex/json (last upload 2018, py2 wheels, requires_dist boltons) against master's pyproject.toml (requires-python >=3.10, dependencies = []).