Skip to content

Commit

Permalink
Build: For Python 3.13 SQLObject requires unreleased FormEncode
Browse files Browse the repository at this point in the history
Install SQLObject and FormEncode from GitHub.
  • Loading branch information
phdru committed Dec 20, 2024
1 parent 617ccf8 commit 4b9bd5e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion devscripts/requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
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.0
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@
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.0',
],
extras_require={
Expand Down

0 comments on commit 4b9bd5e

Please sign in to comment.