Changes between Version 28 and Version 29 of PyYAML
- Timestamp:
- 05/30/11 00:48:52 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PyYAML
v28 v29 14 14 PyYAML features 15 15 16 * a '''complete''' [http://yaml.org/spec/ current.htmlYAML 1.1] parser.16 * a '''complete''' [http://yaml.org/spec/1.1/ YAML 1.1] parser. 17 17 In particular, PyYAML can parse all examples from the specification. 18 18 The parsing algorithm is simple enough to be a reference for YAML parser implementors. … … 28 28 == Requirements == 29 29 30 PyYAML requires Python 2. 3or higher. PyYAML also supports Python 3.30 PyYAML requires Python 2.5 or higher. PyYAML also supports Python 3. 31 31 32 32 33 33 == Download and Installation == 34 34 35 The current stable release of PyYAML: '''3. 09'''.35 The current stable release of PyYAML: '''3.10'''. 36 36 37 37 Download links: 38 38 39 * '''TAR.GZ package''': http://pyyaml.org/download/pyyaml/PyYAML-3. 09.tar.gz40 * '''ZIP package''': http://pyyaml.org/download/pyyaml/PyYAML-3. 09.zip39 * '''TAR.GZ package''': http://pyyaml.org/download/pyyaml/PyYAML-3.10.tar.gz 40 * '''ZIP package''': http://pyyaml.org/download/pyyaml/PyYAML-3.10.zip 41 41 * '''Windows installers''': 42 * http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.3.exe (for Python 2.3) 43 * http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.4.exe (for Python 2.4) 44 * http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.5.exe (for Python 2.5) 45 * http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.6.exe (for Python 2.6) 46 * http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.7.exe (for Python 2.7) 47 * http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py3.0.exe (for Python 3.0) 48 * http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py3.1.exe (for Python 3.1) 42 * http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.5.exe (for Python 2.5) 43 * http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.6.exe (for Python 2.6) 44 * http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.7.exe (for Python 2.7) 45 * http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py3.0.exe (for Python 3.0) 46 * http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py3.1.exe (for Python 3.1) 47 * http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py3.2.exe (for Python 3.2) 49 48 50 49 Unpack the archive and install the package by executing … … 112 111 113 112 == History == 113 114 '''3.10 (2011-05-30)''' 115 116 * Do not try to build LibYAML bindings on platforms other than CPython; 117 this fixed installation under Jython (Thank to olt(at)bogosoft(dot)com). 118 * Clear cyclic references in the parser and the emitter 119 (Thank to kristjan(at)ccpgames(dot)com). 120 * LibYAML bindings are rebuilt with the latest version of Cython. 121 * Dropped support for Python 2.3 and 2.4; currently supported versions 122 are 2.5 to 3.2. 114 123 115 124 '''3.09 (2009-08-31)'''
