[ANN] PyYAML-6.0 Released
Ingy dot Net <[email protected]> Wed, 13 Oct 2021 15:43:13 -0400
| Newsgroups | gmane.text.yaml.general,gmane.comp.python.general |
|---|---|
| Message-ID | <CAHJtQJ73QRVN7Dn4ixc-yUKUU64LwTtX0-_McfrojzruHHyVDw@mail.gmail.com> |
--===============3024078519824385488==
Content-Type: multipart/alternative; boundary="000000000000d58aa105ce412c90"
--000000000000d58aa105ce412c90
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
Announcing PyYAML-6.0
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
A new release of PyYAML is now available:
https://github.com/yaml/pyyaml/releases/tag/6.0
The previously-deprecated default loader selection in `yaml.load()` has
been removed; `Loader` is now a required argument.
Support for Python 2.7 and 3.5 has been dropped, and support for Python 3.1=
0
added. It now includes libyaml 0.2.5 extension wheels for MacOS M1
(Apple Silicon/arm64), Linux s390x and Linux aarch64.
Numerous other bugfixes and code cleanups are included in this release.
Changes
=3D=3D=3D=3D=3D=3D=3D
* https://github.com/yaml/pyyaml/pull/327 -- Change README format to
Markdown
* https://github.com/yaml/pyyaml/pull/483 -- Add a test for YAML 1.1 types
* https://github.com/yaml/pyyaml/pull/497 -- fix float resolver to ignore
`.` and `._`
* https://github.com/yaml/pyyaml/pull/550 -- drop Python 2.7
* https://github.com/yaml/pyyaml/pull/553 -- Fix spelling of =E2=80=9Chexad=
ecimal=E2=80=9D
* https://github.com/yaml/pyyaml/pull/556 -- fix representation of Enum
subclasses
* https://github.com/yaml/pyyaml/pull/557 -- fix libyaml extension compiler
warnings
* https://github.com/yaml/pyyaml/pull/560 -- fix ResourceWarning on leaked
file descriptors
* https://github.com/yaml/pyyaml/pull/561 -- always require `Loader` arg to
`yaml.load()`
* https://github.com/yaml/pyyaml/pull/564 -- remove remaining direct
distutils usage
Resources
=3D=3D=3D=3D=3D=3D=3D=3D=3D
PyYAML Matrix: https://matrix.to/#/#pyyaml:yaml.io
PyYAML IRC Channel: #pyyaml on irc.libera.chat
PyYAML homepage: https://github.com/yaml/pyyaml
PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation
Source and binary installers: https://pypi.org/project/PyYAML/
GitHub repository: https://github.com/yaml/pyyaml/
Bug tracking: https://github.com/yaml/pyyaml/issues
YAML homepage: http://yaml.org/
YAML-core mailing list:
http://lists.sourceforge.net/lists/listinfo/yaml-core
About PyYAML
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
YAML is a data serialization format designed for human readability and
interaction with scripting languages. PyYAML is a YAML parser and emitter
for
Python.
PyYAML features a complete YAML 1.1 parser, Unicode support, pickle support=
,
capable extension API, and sensible error messages. PyYAML supports standar=
d
YAML tags and provides Python-specific tags that allow to represent an
arbitrary Python object.
PyYAML is applicable for a broad range of tasks from complex configuration
files to object serialization and persistence.
Example
=3D=3D=3D=3D=3D=3D=3D
```
>>> import yaml
>>> yaml.full_load("""
... name: PyYAML
... description: YAML parser and emitter for Python
... homepage: https://github.com/yaml/pyyaml
... keywords: [YAML, serialization, configuration, persistence, pickle]
... """)
{'keywords': ['YAML', 'serialization', 'configuration', 'persistence',
'pickle'], 'homepage': 'https://github.com/yaml/pyyaml', 'description':
'YAML parser and emitter for Python', 'name': 'PyYAML'}
>>> print(yaml.dump(_))
name: PyYAML
homepage: https://github.com/yaml/pyyaml
description: YAML parser and emitter for Python
keywords: [YAML, serialization, configuration, persistence, pickle]
```
Maintainers
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
The following people are currently responsible for maintaining PyYAML:
* Ingy d=C3=B6t Net
* Matt Davis
and many thanks to all who have contributed!
See: https://github.com/yaml/pyyaml/pulls
Copyright
=3D=3D=3D=3D=3D=3D=3D=3D=3D
Copyright (c) 2017-2021 Ingy d=C3=B6t Net <[email protected]>
Copyright (c) 2006-2016 Kirill Simonov <xi-RCSp1WnSyaseIZ0/[email protected]>
The PyYAML module was written by Kirill Simonov <xi-RCSp1WnSyaseIZ0/[email protected]>.
It is currently maintained by the YAML and Python communities.
PyYAML is released under the MIT license.
See the file LICENSE for more details.
--000000000000d58aa105ce412c90
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
<div dir=3D"ltr"><br>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D<br>Announcing PyYAML-6.0<br>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D<br><br>A new release of PyYAML is now available=
:<br><a href=3D"https://github.com/yaml/pyyaml/releases/tag/6.0">https://gi=
thub.com/yaml/pyyaml/releases/tag/6.0</a><br><br>The previously-deprecated =
default loader selection in `yaml.load()` has<br>been removed; `Loader` is =
now a required argument.<br><br>Support for Python 2.7 and 3.5 has been dro=
pped, and support for Python 3.10<br>added. It now includes libyaml 0.2.5 e=
xtension wheels for MacOS M1<br>(Apple Silicon/arm64), Linux s390x and Linu=
x aarch64.<br><br>Numerous other bugfixes and code cleanups are included in=
this release.<br><br><br>Changes<br>=3D=3D=3D=3D=3D=3D=3D<br><br>* <a href=
=3D"https://github.com/yaml/pyyaml/pull/327">https://github.com/yaml/pyyaml=
/pull/327</a> -- Change README format to Markdown<br>* <a href=3D"https://g=
ithub.com/yaml/pyyaml/pull/483">https://github.com/yaml/pyyaml/pull/483</a>=
-- Add a test for YAML 1.1 types<br>* <a href=3D"https://github.com/yaml/p=
yyaml/pull/497">https://github.com/yaml/pyyaml/pull/497</a> -- fix float re=
solver to ignore `.` and `._`<br>* <a href=3D"https://github.com/yaml/pyyam=
l/pull/550">https://github.com/yaml/pyyaml/pull/550</a> -- drop Python 2.7<=
br>* <a href=3D"https://github.com/yaml/pyyaml/pull/553">https://github.com=
/yaml/pyyaml/pull/553</a> -- Fix spelling of =E2=80=9Chexadecimal=E2=80=9D<=
br>* <a href=3D"https://github.com/yaml/pyyaml/pull/556">https://github.com=
/yaml/pyyaml/pull/556</a> -- fix representation of Enum subclasses<br>* <a =
href=3D"https://github.com/yaml/pyyaml/pull/557">https://github.com/yaml/py=
yaml/pull/557</a> -- fix libyaml extension compiler warnings<br>* <a href=
=3D"https://github.com/yaml/pyyaml/pull/560">https://github.com/yaml/pyyaml=
/pull/560</a> -- fix ResourceWarning on leaked file descriptors<br>* <a hre=
f=3D"https://github.com/yaml/pyyaml/pull/561">https://github.com/yaml/pyyam=
l/pull/561</a> -- always require `Loader` arg to `yaml.load()`<br>* <a href=
=3D"https://github.com/yaml/pyyaml/pull/564">https://github.com/yaml/pyyaml=
/pull/564</a> -- remove remaining direct distutils usage<br><br><br>Resourc=
es<br>=3D=3D=3D=3D=3D=3D=3D=3D=3D<br><br>PyYAML Matrix: <a href=3D"https://=
matrix.to/#/#pyyaml:yaml.io">https://matrix.to/#/#pyyaml:yaml.io</a><br>PyY=
AML IRC Channel: #pyyaml on irc.libera.chat<br>PyYAML homepage: <a href=3D"=
https://github.com/yaml/pyyaml">https://github.com/yaml/pyyaml</a><br>PyYAM=
L documentation: <a href=3D"http://pyyaml.org/wiki/PyYAMLDocumentation">htt=
p://pyyaml.org/wiki/PyYAMLDocumentation</a><br>Source and binary installers=
: <a href=3D"https://pypi.org/project/PyYAML/">https://pypi.org/project/PyY=
AML/</a><br>GitHub repository: <a href=3D"https://github.com/yaml/pyyaml/">=
https://github.com/yaml/pyyaml/</a><br>Bug tracking: <a href=3D"https://git=
hub.com/yaml/pyyaml/issues">https://github.com/yaml/pyyaml/issues</a><br><b=
r>YAML homepage: <a href=3D"http://yaml.org/">http://yaml.org/</a><br>YAML-=
core mailing list: <a href=3D"http://lists.sourceforge.net/lists/listinfo/y=
aml-core">http://lists.sourceforge.net/lists/listinfo/yaml-core</a><br><br>=
<br>About PyYAML<br>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br><br>YAML is a d=
ata serialization format designed for human readability and<br>interaction =
with scripting languages. PyYAML is a YAML parser and emitter for<br>Python=
.<br><br>PyYAML features a complete YAML 1.1 parser, Unicode support, pickl=
e support,<br>capable extension API, and sensible error messages. PyYAML su=
pports standard<br>YAML tags and provides Python-specific tags that allow t=
o represent an<br>arbitrary Python object.<br><br>PyYAML is applicable for =
a broad range of tasks from complex configuration<br>files to object serial=
ization and persistence.<br><br><br>Example<br>=3D=3D=3D=3D=3D=3D=3D<br><br=
>```<br>>>> import yaml<br><br>>>> yaml.full_load("&=
quot;"<br>... name: PyYAML<br>... description: YAML parser and emitter=
for Python<br>... homepage: <a href=3D"https://github.com/yaml/pyyaml">htt=
ps://github.com/yaml/pyyaml</a><br>... keywords: [YAML, serialization, conf=
iguration, persistence, pickle]<br>... """)<br>{'keyword=
s': ['YAML', 'serialization', 'configuration', =
'persistence',<br>'pickle'], 'homepage': '<a hr=
ef=3D"https://github.com/yaml/pyyaml">https://github.com/yaml/pyyaml</a>=
9;, 'description':<br>'YAML parser and emitter for Python',=
'name': 'PyYAML'}<br><br>>>> print(yaml.dump(_))<=
br>name: PyYAML<br>homepage: <a href=3D"https://github.com/yaml/pyyaml">htt=
ps://github.com/yaml/pyyaml</a><br>description: YAML parser and emitter for=
Python<br>keywords: [YAML, serialization, configuration, persistence, pick=
le]<br>```<br><br>Maintainers<br>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br><br>T=
he following people are currently responsible for maintaining PyYAML:<br><b=
r>* Ingy d=C3=B6t Net<br>* Matt Davis<br><br>and many thanks to all who hav=
e contributed!<br>See: <a href=3D"https://github.com/yaml/pyyaml/pulls">htt=
ps://github.com/yaml/pyyaml/pulls</a><br><br><br>Copyright<br>=3D=3D=3D=3D=
=3D=3D=3D=3D=3D<br><br>Copyright (c) 2017-2021 Ingy d=C3=B6t Net <<a hre=
f=3D"mailto:[email protected]">[email protected]</a>><br>Copyright (c) 2006-2016=
Kirill Simonov <<a href=3D"mailto:xi-RCSp1WnSyaseIZ0/[email protected]">xi-RCSp1WnSyaseIZ0/[email protected]</a=
>><br><br>The PyYAML module was written by Kirill Simonov <<a href=3D=
"mailto:xi-RCSp1WnSyaseIZ0/[email protected]">xi-RCSp1WnSyaseIZ0/[email protected]</a>>.<br>It is currently main=
tained by the YAML and Python communities.<br><br>PyYAML is released under =
the MIT license.<br>See the file LICENSE for more details.<br></div>
--000000000000d58aa105ce412c90--
--===============3024078519824385488==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
--===============3024078519824385488==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
Yaml-core mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/yaml-core
--===============3024078519824385488==--