]> git.phdru.name Git - m_lib.defenc.git/commitdiff
Release 1.1.0.post1: Tested with Pytho 3.12 master
authorOleg Broytman <phd@phdru.name>
Thu, 14 Dec 2023 15:26:57 +0000 (18:26 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 14 Dec 2023 15:26:57 +0000 (18:26 +0300)
INSTALL.txt
README.txt
m_lib/__init__.py
requirements.txt [deleted file]
setup.py

index 57f6e5287d117d9f5400e1ab1b4db39cde7d0cf8..80560ba1e848713174642d41fd2b9d4ec9219e23 100644 (file)
@@ -1,4 +1,4 @@
-m_lib.defenc requires Python 2.6 (that means pip >= 9, < 10), 2.7 or 3.4+.
+m_lib.defenc requires Python 2.7 or 3.4+.
 
 Installation script setup.py requires setuptools.
 
@@ -16,8 +16,6 @@ Installation using pip:
 
     pip install m_lib.defenc
 
-    For Python 2.6 the command is easy_install.
-
 Installation from sources:
 
     To install the library from sources system-wide run run the following
index d2cb968ca56792bdfb689393616acd53f7042c52..6c84a560e0ad24c2c43a488e831213c22135eb69 100644 (file)
@@ -1,6 +1,6 @@
 Broytman Library for Python.
 Author: Oleg Broytman <phd@phdru.name>.
-Copyright (C) 1996-2018 PhiloSoft Design.
+Copyright (C) 1996-2023 PhiloSoft Design.
 License: GPL.
 
 Content of the namespace package:
index 943eda83c2cd76b0f2617869e7a3cf66a8668cde..e96843970f2e0f43897ef9c041f7373d7f04bdd4 100644 (file)
@@ -1,5 +1,8 @@
-"""Broytman Library for Python, Copyright (C) 1996-2018 PhiloSoft Design"""
+"""Broytman Library for Python, Copyright (C) 1996-2023 PhiloSoft Design"""
 
 from pkgutil import extend_path
+import sys
+
 __path__ = extend_path(__path__, __name__)
-__import__('pkg_resources').declare_namespace(__name__)
+if sys.version_info < (3, 7):
+    __import__('pkg_resources').declare_namespace(__name__)
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644 (file)
index 5d2aba7..0000000
+++ /dev/null
@@ -1 +0,0 @@
---install-option=-O2
index e55f8b3955e7a064c8c39263a3dd8179d2237c76..4a4190d6ca07b49bfe429ca86192cab4f11d5cb3 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -4,9 +4,9 @@ from setuptools import setup
 
 setup(
     name = "m_lib.defenc",
-    version = "1.1.0",
+    version = "1.1.0.post1",
     description = "Get default encoding",
-    long_description = "Get default encoding. A part of Broytman Library for Python, Copyright (C) 1996-2018 PhiloSoft Design",
+    long_description = "Get default encoding. A part of Broytman Library for Python, Copyright (C) 1996-2023 PhiloSoft Design",
     long_description_content_type="text/plain",
     author = "Oleg Broytman",
     author_email = "phd@phdru.name",
@@ -23,7 +23,6 @@ setup(
         '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 :: 3',
         'Programming Language :: Python :: 3.4',
@@ -34,11 +33,12 @@ setup(
         'Programming Language :: Python :: 3.9',
         'Programming Language :: Python :: 3.10',
         'Programming Language :: Python :: 3.11',
+        'Programming Language :: Python :: 3.12',
         'Topic :: Software Development :: Libraries',
         'Topic :: Software Development :: Libraries :: Python Modules',
     ],
     platforms = "Any",
     packages = ["m_lib"],
     namespace_packages = ["m_lib"],
-    python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
+    python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
 )