From 0566a31b33d1e2b6671c8fdbe8306b03c1c81a7b Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 25 Jul 2016 21:41:04 +0300 Subject: [PATCH] Version 3.0.0b1: Python 3 compatibility --- INSTALL.txt | 2 +- setup.py | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/INSTALL.txt b/INSTALL.txt index 24e393e..beed3a4 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -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. diff --git a/setup.py b/setup.py index bd17518..6e17030 100755 --- 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', ], -- 2.39.2