Ravenports generated: 30 Jul 2018 20:29
[ravenports.git] / bucket_4A / python-ruamel.yaml
1 # Buildsheet autogenerated by ravenadm tool -- Do not edit.
2
3 NAMEBASE=               python-ruamel.yaml
4 VERSION=                0.15.46
5 KEYWORDS=               python devel textproc
6 VARIANTS=               py27 py36 py37
7 SDESC[py36]=            YAML 1.2 parser/emitter (PY 36)
8 SDESC[py37]=            YAML 1.2 parser/emitter (PY 37)
9 SDESC[py27]=            YAML 1.2 parser/emitter (PY 27)
10 HOMEPAGE=               https://bitbucket.org/ruamel/yaml
11 CONTACT=                Python_Automaton[python@ironwolf.systems]
12
13 DOWNLOAD_GROUPS=        main
14 SITES[main]=            PYPI/r/ruamel.yaml
15 DISTFILE[1]=            ruamel.yaml-0.15.46.tar.gz:main
16 DF_INDEX=               1
17 SPKGS[py36]=            single
18 SPKGS[py37]=            single
19 SPKGS[py27]=            single
20
21 OPTIONS_AVAILABLE=      PY27 PY36 PY37
22 OPTIONS_STANDARD=       none
23 VOPTS[py36]=            PY27=OFF PY36=ON PY37=OFF
24 VOPTS[py37]=            PY27=OFF PY36=OFF PY37=ON
25 VOPTS[py27]=            PY27=ON PY36=OFF PY37=OFF
26
27 DISTNAME=               ruamel.yaml-0.15.46
28
29 GENERATED=              yes
30
31 [PY36].USES_ON=                         python:py36
32
33 [PY37].USES_ON=                         python:py37
34
35 [PY27].USES_ON=                         python:py27
36
37 [FILE:4360:descriptions/desc.single]
38
39 ruamel.yaml
40 ===========
41
42 ``ruamel.yaml`` is a YAML 1.2 loader/dumper package for Python.
43
44 :version:       0.15.46
45 :updated:       2018-07-29
46 :documentation: http://yaml.readthedocs.io
47 :repository:    https://bitbucket.org/ruamel/
48 :pypi:          https://pypi.org/project/ruamel.yaml/
49
50
51 Starting with version 0.15.0 the way YAML files are loaded and dumped
52 is changing. See the API doc for details.  Currently existing
53 functionality will throw a warning before being changed/removed.
54 **For production systems you should pin the version being used with
55 ``ruamel.yaml<=0.15``**. There might be bug fixes in the 0.14 series,
56 but new functionality is likely only to be available via the new API.
57
58 If your package uses ``ruamel.yaml`` and is not listed on PyPI, drop
59 me an email, preferably with some infomormation on how you use the
60 package (or a link to bitbucket/github) and I'll keep you informed
61 when the status of the API is stable enough to make the transition.
62
63 * `Overview <http://yaml.readthedocs.org/en/latest/overview.html>`_
64 * `Installing <http://yaml.readthedocs.org/en/latest/install.html>`_
65 * `Basic Usage <http://yaml.readthedocs.org/en/latest/basicuse.html>`_
66 * `Details <http://yaml.readthedocs.org/en/latest/detail.html>`_
67 * `Examples <http://yaml.readthedocs.org/en/latest/example.html>`_
68 * `API <http://yaml.readthedocs.org/en/latest/api.html>`_
69 * `Differences with PyYAML
70 <http://yaml.readthedocs.org/en/latest/pyyaml.html>`_
71
72 .. image:: https://readthedocs.org/projects/yaml/badge/?version=stable
73    :target: https://yaml.readthedocs.org/en/stable
74
75 .. image:: https://bestpractices.coreinfrastructure.org/projects/1128/badge
76    :target: https://bestpractices.coreinfrastructure.org/projects/1128
77
78 ChangeLog
79 =========
80
81 .. should insert NEXT: at the beginning of line for next key (with empty
82 line)
83
84 0.15.46 (2018-07-29):
85   - fixed DeprecationWarning for importing from ``collections`` on 3.7
86     (issue 210, reported by `Reinoud Elhorst
87     <https://bitbucket.org/reinhrst/>`__). It was `difficult to find
88     why tox/pytest did not report
89     <https://stackoverflow.com/q/51573204/1307905>`__ and as time
90     consuming to actually `fix
91     <https://stackoverflow.com/a/51573205/1307905>`__ the tests.
92
93 0.15.45 (2018-07-26):
94   - After adding failing test for ``YAML.load_all(Path())``, remove
95 StopIteration
96     (PR provided by `Zachary Buhman <https://bitbucket.org/buhman/>`__,
97     also reported by `Steven Hiscocks
98 <https://bitbucket.org/sdhiscocks/>`__.
99
100 0.15.44 (2018-07-14):
101   - Correct loading plain scalars consisting of numerals only and
102     starting with `0`, when not explicitly specifying YAML version
103     1.1. This also fixes the issue about dumping string `'019'` as
104     plain scalars as reported by `Min RK
105     <https://bitbucket.org/minrk/>`__, that prompted this chance.
106
107 0.15.43 (2018-07-12):
108   - merge PR33: Python2.7 on Windows is narrow, but has no
109     ``sysconfig.get_config_var('Py_UNICODE_SIZE')``. (merge provided by
110     `Marcel Bargull <https://bitbucket.org/mbargull/>`__)
111   - ``register_class()`` now returns class (proposed by
112     `Mike Nerone <https://bitbucket.org/Manganeez/>`__}
113
114 0.15.42 (2018-07-01):
115   - fix regression showing only on narrow Python 2.7 (py27mu) builds
116     (with help from
117     `Marcel Bargull <https://bitbucket.org/mbargull/>`__ and
118     `Colm O'Connor <https://bitbucket.org/colmoconnorgithub/>`__).
119   - run pre-commit ``tox`` on Python 2.7 wide and narrow, as well as
120     3.4/3.5/3.6/3.7/pypy
121
122 0.15.41 (2018-06-27):
123   - add detection of C-compile failure (investigation prompted by
124     `StackOverlow <https://stackoverflow.com/a/51057399/1307905>`__ by
125     `Emmanuel Blot
126 <https://stackoverflow.com/users/8233409/emmanuel-blot>`__),
127     which was removed while no longer dependent on ``libyaml``,
128 C-extensions
129     compilation still needs a compiler though.
130
131 0.15.40 (2018-06-18):
132   - added links to landing places as suggested in issue 190 by
133     `KostisA <https://bitbucket.org/ankostis/>`__
134   - fixes issue #201: decoding unicode escaped tags on Python2, reported
135     by `Dan Abolafia <https://bitbucket.org/danabo/>`__
136
137 0.15.39 (2018-06-17):
138   - merge PR27 improving package startup time (and loading when regexp not
139     actually used), provided by
140     `Marcel Bargull <https://bitbucket.org/mbargull/>`__
141
142 0.15.38 (2018-06-13):
143   - fix for losing precision when roundtripping floats by
144
145
146 [FILE:105:distinfo]
147 8f048085a58ca59353c2c283e5f14af387ab6a1a7ae5d6ec26056bc2e7a396f0       281586 ruamel.yaml-0.15.46.tar.gz
148