]> git.phdru.name Git - m_lib.git/commitdiff
Version 3.0.0b1: Python 3 compatibility 3.0.0b1
authorOleg Broytman <phd@phdru.name>
Mon, 25 Jul 2016 18:41:04 +0000 (21:41 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 25 Jul 2016 18:42:11 +0000 (21:42 +0300)
INSTALL.txt
setup.py

index 24e393ef816ca65d3767fe54089376390eb02475..beed3a4250ad97707d583dcbf7bd9624e0644563 100644 (file)
@@ -1,4 +1,4 @@
-m_lib requires Python2; preferred versions are 2.6 or 2.7.
+m_lib requires Python 2.6, 2.7 or 3.4+.
 
 Installation script setup.py requires setuptools. If you don't have it
 installed setup.py will try to download and install it.
index bd1751882f3d39932757d16db87bcf071ced7b80..6e170308defd978eb70d1969e6d5643d7b6fa1ef 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@ if is_setuptools:
         }
 
 setup(name = "m_lib",
-    version = "2.1.3",
+    version = "3.0.0b1",
     description = "Broytman Library for Python",
     long_description = "Broytman Library for Python, Copyright (C) 1996-2016 PhiloSoft Design",
     author = "Oleg Broytman",
@@ -27,14 +27,15 @@ setup(name = "m_lib",
     license = "GPL",
     keywords=[''],
     classifiers=[
-        'Development Status :: 6 - Mature',
+        'Development Status :: 4 - Beta',
         'Intended Audience :: Developers',
         'License :: OSI Approved :: GNU General Public License (GPL)',
         'Operating System :: OS Independent',
         'Programming Language :: Python :: 2',
         'Programming Language :: Python :: 2.6',
         'Programming Language :: Python :: 2.7',
-        'Programming Language :: Python :: 2 :: Only',
+        'Programming Language :: Python :: 3',
+        'Programming Language :: Python :: 3.4',
         'Topic :: Software Development :: Libraries',
         'Topic :: Software Development :: Libraries :: Python Modules',
     ],