]> git.phdru.name Git - sqlconvert.git/commitdiff
Build(setup.py): Install `m_lib.full`
authorOleg Broytman <phd@phdru.name>
Thu, 14 Dec 2023 17:19:59 +0000 (20:19 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 14 Dec 2023 17:19:59 +0000 (20:19 +0300)
We need both `m_lib` and `m_lib.defenc`.

devscripts/requirements/requirements.txt
setup.py

index 08b0cd3e6a5a600fb78a69b7b05dfb93ecd5b78d..a5e54e3b25e7f6dbf43fe58c61fe162afcf53afd 100644 (file)
@@ -1,5 +1,4 @@
 sqlparse
 SQLObject>=2.2.1; python_version >= '2.7' and python_version < '3.0'
 SQLObject>=3.0.0; python_version >= '3.4'
-m_lib.defenc>=1.0
-m_lib>=3.1
+m_lib.full>=1.0
index 911b3ac88faa75ffd6223081c11cc6105f6277e7..e8a6a944f8a5562c566e25daa31aeee9ba13bc03 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -62,8 +62,7 @@ setup(
     install_requires=[
         'SQLObject>=2.2.1; python_version=="2.7"',
         'SQLObject>=3.0.0; python_version>="3.4"',
-        'm_lib.defenc>=1.0',
-        'm_lib>=3.1',
+        'm_lib.full>=1.0',
         'sqlparse',
     ],
 )