Skip to content

Commit

Permalink
Merge PR #323 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by dreispt
  • Loading branch information
OCA-git-bot committed Jan 12, 2025
2 parents 4ca2982 + 0f92cf6 commit 3800595
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion base_external_dbsource_mssql/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@
"website": "https://github.com/OCA/server-backend",
"license": "LGPL-3",
"depends": ["base_external_dbsource_sqlite"],
"external_dependencies": {"python": ["pymssql<=2.2.5", "sqlalchemy"]},
"external_dependencies": {
"python": [
"pymssql<=2.2.5 ; python_version <= '3.10'",
"pymssql<=2.2.8 ; python_version > '3.10'",
"sqlalchemy",
]
},
"demo": ["demo/base_external_dbsource.xml"],
"installable": True,
}
1 change: 0 additions & 1 deletion base_external_dbsource_mssql/static/description/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# generated from manifests external_dependencies
mysqlclient
pymssql<=2.2.5
pymssql<=2.2.5 ; python_version <= '3.10'
pymssql<=2.2.8 ; python_version > '3.10'
sqlalchemy

0 comments on commit 3800595

Please sign in to comment.