Skip to content

Commit 71ae133

Browse files
committed
fix(setup.py): require setuptools>=80.9.0 for Python 3.12 compatibility
- Add setuptools>=80.9.0 to install_requires to resolve packaging errors in Python 3.12 environments. - Ensures installation works with modern setuptools and avoids canonicalize_version errors.
1 parent 4357952 commit 71ae133

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
author="My name",
1919
author_email="[email protected]",
2020
packages=find_packages(),
21-
install_requires=requirements,
21+
install_requires=requirements + ["setuptools>=80.9.0"],
2222
python_requires=">=3.8",
2323
)

0 commit comments

Comments
 (0)