Changes between Version 22 and Version 23 of PyYAML
- Timestamp:
- 10/03/08 15:17:32 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PyYAML
v22 v23 35 35 == Download and Installation == 36 36 37 The current stable release of PyYAML: '''3.0 5'''.37 The current stable release of PyYAML: '''3.06'''. 38 38 39 39 Download links: 40 40 41 * '''TAR.GZ package''': http://pyyaml.org/download/pyyaml/PyYAML-3.0 5.tar.gz42 * '''ZIP package''': http://pyyaml.org/download/pyyaml/PyYAML-3.0 5.zip41 * '''TAR.GZ package''': http://pyyaml.org/download/pyyaml/PyYAML-3.06.tar.gz 42 * '''ZIP package''': http://pyyaml.org/download/pyyaml/PyYAML-3.06.zip 43 43 * '''Windows installer''': 44 * http://pyyaml.org/download/pyyaml/PyYAML-3.05.win32-py2.3.exe (for Python 2.3) 45 * http://pyyaml.org/download/pyyaml/PyYAML-3.05.win32-py2.4.exe (for Python 2.4) 46 * http://pyyaml.org/download/pyyaml/PyYAML-3.05.win32-py2.5.exe (for Python 2.5) 44 * http://pyyaml.org/download/pyyaml/PyYAML-3.06.win32-py2.3.exe (for Python 2.3) 45 * http://pyyaml.org/download/pyyaml/PyYAML-3.06.win32-py2.4.exe (for Python 2.4) 46 * http://pyyaml.org/download/pyyaml/PyYAML-3.06.win32-py2.5.exe (for Python 2.5) 47 * http://pyyaml.org/download/pyyaml/PyYAML-3.06.win32-py2.6.exe (for Python 2.6) 47 48 48 49 Unpack the archive and install the package by executing … … 51 52 }}} 52 53 53 If you want to use [wiki:LibYAML] bindings, you need to download and install [wiki:LibYAML] 54 and [http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/ Pyrex]. 54 If you want to use [wiki:LibYAML] bindings, you need to download and install [wiki:LibYAML]. 55 55 Then you may install the bindings by executing 56 56 {{{ 57 $ python setup _with_libyaml.pyinstall57 $ python setup.py --with-libyaml install 58 58 }}} 59 59 … … 106 106 107 107 == History == 108 109 '''3.06 (2008-10-03)''' 110 * setup.py checks whether [wiki:LibYAML] is installed and if so, builds 111 and installs [wiki:LibYAML] bindings. To force or disable installation 112 of [wiki:LibYAML] bindings, use `--with-libyaml` or `--without-libyaml` 113 respectively (partially fixes #34). 114 * Building [wiki:LibYAML] bindings no longer requires Pyrex installed (fixed #33). 115 * `yaml.load()` raises an exception if the input stream contains 116 more than one YAML document (fixed #54). 117 * Fixed exceptions produced by [wiki:LibYAML] bindings (fixed #50). 118 * Fixed a dot `'.'` character being recognized as `!!float` (fixed #62). 119 * Fixed Python 2.3 compatibility issue in constructing `!!timestamp` values. 120 * Windows binary packages are built against the [wiki:LibYAML] stable branch. 121 * Added attributes `yaml.__version__` and `yaml.__with_libyaml__` (fixed #85). 108 122 109 123 '''3.05 (2007-05-13)'''
