]> git.phdru.name Git - sqlconvert.git/commitdiff
Revert "Build: For Python 3.13 SQLObject requires unreleased FormEncode" master
authorOleg Broytman <phd@phdru.name>
Sat, 16 Aug 2025 20:22:24 +0000 (23:22 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 16 Aug 2025 20:22:24 +0000 (23:22 +0300)
This reverts commit 6bc16bbe9493600eef40180102ff12ec1fc978dc.

devscripts/requirements/requirements.txt
setup.py

index 82a1f641328860b570576506e6cdf8a2734ca3b1..382ec435e1039e3053ea6f0aae09192d7c965509 100644 (file)
@@ -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
index b88b5d15a4e31dcdfc4b36e6edf07e4df62754aa..f4b92b4cc6e1001c642f297c35dec9882787fced 100755 (executable)
--- 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',
     ],