Cleanup: spelling in comments (make check_spelling_*)

This commit is contained in:
Campbell Barton
2025-03-21 00:51:50 +00:00
parent 0f4056ab65
commit d616c87d03
47 changed files with 76 additions and 77 deletions

View File

@@ -246,9 +246,9 @@ def main() -> None:
name="bpy",
version=blender_version_str,
# bpy is not compatible with numpy 2+, as the VFX reference platform uses
# 1.26 atm. This fix amended the install requirement package to specify
# numpy>=1.26,<2.0 to mitigate this issue.
# `bpy` is not compatible with `numpy` 2+, as the VFX reference platform uses
# 1.26 at the moment. This fix amended the install requirement package to specify
# `numpy>=1.26,<2.0` to mitigate this issue.
install_requires=["cython", "numpy>=1.26,<2.0", "requests", "zstandard"],
python_requires="==%d.%d.*" % (python_version_number[0], python_version_number[1]),