Changes between Version 25 and Version 26 of PyYAML
- Timestamp:
- 12/30/08 16:37:40 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PyYAML
v25 v26 22 22 * support for all types from the [http://yaml.org/type/index.html YAML types repository]. 23 23 A simple extension API is provided. 24 * both pure-Python and fast [wiki:LibYAML]-based parsers and emitters. 24 25 * relatively sensible error messages. 25 26 26 Note that PyYAML is still young and may have some bugs. Furthermore,27 PyYAML is written in Python and is slow comparing to C based parsers.28 29 27 30 28 == Requirements == 31 29 32 PyYAML requires Python 2.3 or higher. 30 PyYAML requires Python 2.3 or higher. PyYAML also supports Python 3.0. 33 31 34 32 35 33 == Download and Installation == 36 34 37 The current stable release of PyYAML: '''3.0 7'''.35 The current stable release of PyYAML: '''3.08'''. 38 36 39 37 Download links: 40 38 41 * '''TAR.GZ package''': http://pyyaml.org/download/pyyaml/PyYAML-3.07.tar.gz 42 * '''ZIP package''': http://pyyaml.org/download/pyyaml/PyYAML-3.07.zip 43 * '''Windows installer''': 44 * http://pyyaml.org/download/pyyaml/PyYAML-3.07.win32-py2.3.exe (for Python 2.3) 45 * http://pyyaml.org/download/pyyaml/PyYAML-3.07.win32-py2.4.exe (for Python 2.4) 46 * http://pyyaml.org/download/pyyaml/PyYAML-3.07.win32-py2.5.exe (for Python 2.5) 47 * http://pyyaml.org/download/pyyaml/PyYAML-3.07.win32-py2.6.exe (for Python 2.6) 39 * '''TAR.GZ package''': http://pyyaml.org/download/pyyaml/PyYAML-3.08.tar.gz 40 * '''ZIP package''': http://pyyaml.org/download/pyyaml/PyYAML-3.08.zip 41 * '''Windows installers''': 42 * http://pyyaml.org/download/pyyaml/PyYAML-3.08.win32-py2.3.exe (for Python 2.3) 43 * http://pyyaml.org/download/pyyaml/PyYAML-3.08.win32-py2.4.exe (for Python 2.4) 44 * http://pyyaml.org/download/pyyaml/PyYAML-3.08.win32-py2.5.exe (for Python 2.5) 45 * http://pyyaml.org/download/pyyaml/PyYAML-3.08.win32-py2.6.exe (for Python 2.6) 46 * http://pyyaml.org/download/pyyaml/PyYAML-3.08.win32-py3.0.exe (for Python 3.0) 48 47 49 48 Unpack the archive and install the package by executing … … 111 110 112 111 == History == 112 113 '''3.08 (2008-12-31)''' 114 115 * Python 3 support (Thank to Erick Tryzelaar). 116 * Use Cython instead of Pyrex to build LibYAML bindings. 117 * Refactored support for unicode and byte input/output streams. 113 118 114 119 '''3.07 (2008-12-29)''' … … 132 137 133 138 '''3.06 (2008-10-03)''' 139 134 140 * setup.py checks whether [wiki:LibYAML] is installed and if so, builds 135 141 and installs [wiki:LibYAML] bindings. To force or disable installation … … 146 152 147 153 '''3.05 (2007-05-13)''' 154 148 155 * Allow for immutable subclasses of YAMLObject. Fixed #53. 149 156 * Make the encoding of the unicode->str conversion explicit; fixed #52. … … 161 168 162 169 '''3.04 (2006-08-20)''' 170 163 171 * Include experimental [wiki:LibYAML] bindings. 164 172 * Fully support recursive structures (close #5).
