We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb9efb2 commit b105877Copy full SHA for b105877
docs/changelog.rst
@@ -21,6 +21,7 @@ To avail of fixes in an unreleased version, please download a ZIP file
21
In progress (unreleased)
22
------------------------
23
24
+* :gh:issue:`1237` :mod:`mitogen`: Re-declare Python 2.4 compatibility
25
26
v0.3.35 (2025-12-01)
27
--------------------
docs/index.rst
@@ -332,12 +332,16 @@ a large fleet of machines, or to alert the parent of unexpected state changes.
332
Compatibility
333
#############
334
335
-Mitogen is compatible with **Python 2.4** released November 2004, making it
+``mitogen.*`` is compatible with Python 2.4 - 2.7 and 3.6 onward; making it
336
suitable for managing a fleet of potentially ancient corporate hardware, such
337
as Red Hat Enterprise Linux 5, released in 2007.
338
339
-Every combination of Python 3.x/2.x parent and child should be possible,
340
-however at present only Python 2.4, 2.6, 2.7 and 3.6 are tested automatically.
+Every combination of Python 3.x/2.x parent and child should be possible.
+Automated testing cannot cover every combination, automated testing tries to
341
+cover the extemities (e.g. Python 3.14 parent -> Python 2.4 child).
342
+
343
+``ansible_mitogen.*`` is compatible with Python 2.7 and 3.6 onward; making it
344
+suitable for Ansible 2.10 onward.
345
346
347
Zero Dependencies
setup.py
@@ -82,7 +82,7 @@ def long_description():
82
license = 'BSD-3-Clause',
83
url = 'https://github.com/mitogen-hq/mitogen/',
84
packages = find_packages(exclude=['tests', 'examples']),
85
- python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*',
+ python_requires='>=2.4, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*',
86
zip_safe = False,
87
classifiers = [
88
'Environment :: Console',
@@ -91,6 +91,9 @@ def long_description():
91
'Operating System :: MacOS :: MacOS X',
92
'Operating System :: POSIX',
93
'Programming Language :: Python',
94
+ 'Programming Language :: Python :: 2.4',
95
+ 'Programming Language :: Python :: 2.5',
96
+ 'Programming Language :: Python :: 2.6',
97
'Programming Language :: Python :: 2.7',
98
'Programming Language :: Python :: 3',
99
'Programming Language :: Python :: 3.6',
0 commit comments