From: Oleg Broytman Date: Wed, 10 Jan 2018 23:57:45 +0000 (+0300) Subject: Fix: Python 2.6 doesn't allow 'm_lib.defenc' in `requires` X-Git-Url: https://git.phdru.name/?p=m_lib.full.git;a=commitdiff_plain;h=41554ac2008ea4c14c63cb0d6e09d9095b39e3de Fix: Python 2.6 doesn't allow 'm_lib.defenc' in `requires` --- diff --git a/setup.py b/setup.py index 05c1be2..2d5061c 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ if is_setuptools: kw['install_requires'] = ['m_lib>=3.1', 'm_lib.defenc>=1.0'] setup(name = "m_lib.full", - version = "1.0.0", + version = "1.0.1", description = "m_lib full meta-package", long_description = "Broytman Library for Python, Copyright (C) 1996-2018 PhiloSoft Design", author = "Oleg Broytman", @@ -37,7 +37,6 @@ setup(name = "m_lib.full", ], platforms = "Any", packages = ["m_lib"], - requires=['m_lib', 'm_lib.defenc'], namespace_packages = ["m_lib"], **kw )