Ravenports generated: 25 Nov 2019 17:36
[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.16.5
5 KEYWORDS=               python devel textproc
6 VARIANTS=               py27 py38 py37
7 SDESC[py37]=            YAML 1.2 parser/emitter (PY 37)
8 SDESC[py38]=            YAML 1.2 parser/emitter (PY 38)
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.16.5.tar.gz:main
16 DF_INDEX=               1
17 SPKGS[py37]=            single
18 SPKGS[py38]=            single
19 SPKGS[py27]=            single
20
21 OPTIONS_AVAILABLE=      PY27 PY38 PY37
22 OPTIONS_STANDARD=       none
23 VOPTS[py37]=            PY27=OFF PY38=OFF PY37=ON
24 VOPTS[py38]=            PY27=OFF PY38=ON PY37=OFF
25 VOPTS[py27]=            PY27=ON PY38=OFF PY37=OFF
26
27 DISTNAME=               ruamel.yaml-0.16.5
28
29 GENERATED=              yes
30
31 INVALID_RPATH=          yes
32
33 [PY37].USES_ON=                         python:py37
34
35 [PY38].USES_ON=                         python:py38
36
37 [PY27].USES_ON=                         python:py27
38
39 [FILE:4145:descriptions/desc.single]
40
41 ruamel.yaml
42 ===========
43
44 ``ruamel.yaml`` is a YAML 1.2 loader/dumper package for Python.
45
46 :version:       0.16.5
47 :updated:       2019-08-18
48 :documentation: http://yaml.readthedocs.io
49 :repository:    https://bitbucket.org/ruamel/yaml
50 :pypi:          https://pypi.org/project/ruamel.yaml/
51
52
53 Starting with version 0.15.0 the way YAML files are loaded and dumped
54 is changing. See the API doc for details.  Currently existing
55 functionality will throw a warning before being changed/removed.
56 **For production systems you should pin the version being used with
57 ``ruamel.yaml<=0.15``**. There might be bug fixes in the 0.14 series,
58 but new functionality is likely only to be available via the new API.
59
60 If your package uses ``ruamel.yaml`` and is not listed on PyPI, drop
61 me an email, preferably with some information on how you use the
62 package (or a link to bitbucket/github) and I'll keep you informed
63 when the status of the API is stable enough to make the transition.
64
65 * `Overview <http://yaml.readthedocs.org/en/latest/overview.html>`_
66 * `Installing <http://yaml.readthedocs.org/en/latest/install.html>`_
67 * `Basic Usage <http://yaml.readthedocs.org/en/latest/basicuse.html>`_
68 * `Details <http://yaml.readthedocs.org/en/latest/detail.html>`_
69 * `Examples <http://yaml.readthedocs.org/en/latest/example.html>`_
70 * `API <http://yaml.readthedocs.org/en/latest/api.html>`_
71 * `Differences with PyYAML
72 <http://yaml.readthedocs.org/en/latest/pyyaml.html>`_
73
74 .. image:: https://readthedocs.org/projects/yaml/badge/?version=stable
75    :target: https://yaml.readthedocs.org/en/stable
76
77 .. image:: https://bestpractices.coreinfrastructure.org/projects/1128/badge
78    :target: https://bestpractices.coreinfrastructure.org/projects/1128
79
80 .. image::
81 https://bitbucket.org/ruamel/yaml/raw/default/_doc/_static/license.svg
82    :target: https://opensource.org/licenses/MIT
83
84 .. image::
85 https://bitbucket.org/ruamel/yaml/raw/default/_doc/_static/pypi.svg
86    :target: https://pypi.org/project/ruamel.yaml/
87
88 .. image::
89 https://bitbucket.org/ruamel/oitnb/raw/default/_doc/_static/oitnb.svg
90    :target: https://pypi.org/project/oitnb/
91
92 .. image:: http://www.mypy-lang.org/static/mypy_badge.svg
93    :target: http://mypy-lang.org/
94
95 ChangeLog
96 =========
97
98 .. should insert NEXT: at the beginning of line for next key (with empty
99 line)
100
101 0.16.5 (2019-08-18):
102   - allow for ``YAML(typ=['unsafe', 'pytypes'])``
103
104 0.16.4 (2019-08-16):
105   - fix output of TAG directives with # (reported by `Thomas Smith
106     <https://bitbucket.org/%7Bd4c57a72-f041-4843-8217-b4d48b6ece2f%7D/>`__)
107
108
109 0.16.3 (2019-08-15):
110   - split construct_object
111   - change stuff back to keep mypy happy
112   - move setting of version based on YAML directive to scanner, allowing to
113     check for file version during TAG directive scanning
114
115 0.16.2 (2019-08-15):
116   - preserve YAML and TAG directives on roundtrip, correctly output #
117     in URL for YAML 1.2 (both reported by `Thomas Smith
118     <https://bitbucket.org/%7Bd4c57a72-f041-4843-8217-b4d48b6ece2f%7D/>`__)
119
120 0.16.1 (2019-08-08):
121   - Force the use of new version of ruamel.yaml.clib (reported by `Alex Joz
122     <https://bitbucket.org/%7B9af55900-2534-4212-976c-61339b6ffe14%7D/>`__)
123   - Allow '#' in tag URI as these are allowed in YAML 1.2 (reported by
124     `Thomas Smith
125     <https://bitbucket.org/%7Bd4c57a72-f041-4843-8217-b4d48b6ece2f%7D/>`__)
126
127 0.16.0 (2019-07-25):
128   - split of C source that generates .so file to ruamel.yaml.clib
129   - duplicate keys are now an error when working with the old API as well
130
131 0.15.100 (2019-07-17):
132   - fixing issue with dumping deep-copied data from commented YAML, by
133     providing both the memo parameter to __deepcopy__, and by allowing
134     startmarks to be compared on their content (reported by `Theofilos
135     Petsios
136     <https://bitbucket.org/%7Be550bc5d-403d-4fda-820b-bebbe71796d3%7D/>`__)
137
138 0.15.99 (2019-07-12):
139   - add `py.typed` to distribution, based on a PR submitted by
140     `Michael Crusoe
141     <https://bitbucket.org/%7Bc9fbde69-e746-48f5-900d-34992b7860c8%7D/>`__
142   - merge PR 40 (also by Michael Crusoe) to more accurately specify
143     repository in the README (also reported in a misunderstood issue
144     some time ago)
145
146
147 [FILE:104:distinfo]
148 412a6f5cfdc0525dee6a27c08f5415c7fd832a7afcb7a0ed7319628aed23d408       145882 ruamel.yaml-0.16.5.tar.gz
149