From a8be6180d381d6aa2ad462c865004a5a1861afa7 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 16 Aug 2025 23:22:24 +0300 Subject: [PATCH] Revert "Build: For Python 3.13 SQLObject requires unreleased FormEncode" This reverts commit 6bc16bbe9493600eef40180102ff12ec1fc978dc. --- devscripts/requirements/requirements.txt | 3 +-- setup.py | 5 +---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/devscripts/requirements/requirements.txt b/devscripts/requirements/requirements.txt index 82a1f64..382ec43 100644 --- a/devscripts/requirements/requirements.txt +++ b/devscripts/requirements/requirements.txt @@ -1,5 +1,4 @@ sqlparse SQLObject>=2.2.1; python_version == '2.7' -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' +SQLObject>=3.0.0; python_version >= '3.4' m_lib.full>=1.0 diff --git a/setup.py b/setup.py index b88b5d1..f4b92b4 100755 --- a/setup.py +++ b/setup.py @@ -64,10 +64,7 @@ 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" and python_version<="3.12"', - "SQLObject @ " - "git+https://github.com/sqlobject/sqlobject.git#egg=sqlobject" - " ; python_version >= '3.13'", + 'SQLObject>=3.0.0; python_version>="3.4"', 'm_lib.full>=1.0', 'sqlparse', ], -- 2.39.5