From: Oleg Broytman Date: Fri, 20 Dec 2024 15:54:26 +0000 (+0300) Subject: Build: For Python 3.13 SQLObject requires unreleased FormEncode X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=53d26cf592837bded5e69f89d56f240219aed19f;p=xsetbg.git Build: For Python 3.13 SQLObject requires unreleased FormEncode Install SQLObject and FormEncode from GitHub. --- diff --git a/setup.py b/setup.py index 8ec3e4c..1ed3e65 100755 --- a/setup.py +++ b/setup.py @@ -35,7 +35,10 @@ setup( python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', install_requires=[ 'SQLObject>=2.2.1; python_version=="2.7"', - 'SQLObject>=3.0.0; python_version>="3.4"', + 'SQLObject>=3.0.0; python_version>="3.4" and python_version<="3.12"', + "SQLObject @ " + "git+https://github.com/sqlobject/sqlobject.git#egg=sqlobject" + " ; python_version >= '3.13'", 'm_lib.defenc>=1.1', ], )