Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/docs/change_log.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Change Log
==========

Current (0.1.16.dev)
--------------------
0.1.16 (16/08/2025)
-------------------

- Improved hooking performance by using the bulk enable mode in minhook. (`#26 <https://github.com/monkeyman192/pyMHF/issues/26>`_)
- Fixed an issue running mods where attach to already existing processes.
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/single_file_mods.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The steps to run the above script from scratch (ie. with no ``uv`` installed) ar
python -m pip install uv
uv run script.py

In the above ensure that the ``python`` command runs a python version between 3.9 and 3.11 INCLUSIVE.
In the above ensure that the ``python`` command runs a python version of at least 3.9.
Replace `script.py` with the name of the script as it was saved.

Note that the line ``load_mod_file(__file__)`` in the above script is what tells python to run the script with pyMHF.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pyMHF is also able to run single python files as a mod `uv <https://docs.astral.

.. important::
When using uv as a package manager, it's very important that you DO NOT let uv use its managed python installs with pyMHF. These python builds do not seem to like being injected and will cause the target process to crash.
It is recommended that you have a python version between 3.9 and 3.11 inclusive installed from the official python source, and you can potentially even set the ``UV_NO_MANAGED_PYTHON`` environment variable to ``false`` on your system to force uv to use the system installs.
It is recommended that you have a python version between 3.9+ installed from the official python source, and you can potentially even set the ``UV_NO_MANAGED_PYTHON`` environment variable to ``false`` on your system to force uv to use the system installs.

Features
--------
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
Expand Down
Loading