mirror of
https://github.com/yaml/pyyaml.git
synced 2025-10-19 11:03:18 +00:00
6.0b1 release
This commit is contained in:
parent
d5aba406ed
commit
4808fba18e
5 changed files with 45 additions and 17 deletions
13
CHANGES
13
CHANGES
|
@ -4,6 +4,19 @@ For a complete changelog, see:
|
|||
* https://github.com/yaml/pyyaml/commits/
|
||||
* https://bitbucket.org/xi/pyyaml/commits/
|
||||
|
||||
6.0b1 (2021-10-04)
|
||||
|
||||
* 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 “hexadecimal”
|
||||
* 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
|
||||
|
||||
5.4.1 (2021-01-20)
|
||||
|
||||
* https://github.com/yaml/pyyaml/pull/480 -- Fix stub compat with older pyyaml versions that may unwittingly load it
|
||||
|
|
10
README.md
10
README.md
|
@ -31,14 +31,16 @@ To run the tests, type `python setup.py test`.
|
|||
|
||||
## Further Information
|
||||
|
||||
- For more information, check the
|
||||
* For more information, check the
|
||||
[PyYAML homepage](https://github.com/yaml/pyyaml).
|
||||
|
||||
- [PyYAML tutorial and reference](http://pyyaml.org/wiki/PyYAMLDocumentation).
|
||||
* [PyYAML tutorial and reference](http://pyyaml.org/wiki/PyYAMLDocumentation).
|
||||
|
||||
- Discuss PyYAML with the maintainers in IRC #pyyaml irc.freenode.net.
|
||||
* Discuss PyYAML with the maintainers on
|
||||
Matrix at https://matrix.to/#/#pyyaml:yaml.io or
|
||||
IRC #pyyaml irc.libera.chat
|
||||
|
||||
- Submit bug reports and feature requests to the
|
||||
* Submit bug reports and feature requests to the
|
||||
[PyYAML bug tracker](https://github.com/yaml/pyyaml/issues).
|
||||
|
||||
## License
|
||||
|
|
|
@ -1,31 +1,44 @@
|
|||
From: Ingy döt Net <ingy@ingy.net>
|
||||
To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net
|
||||
Subject: [ANN] PyYAML-5.4.1 Released
|
||||
Subject: [ANN] PyYAML-6.0b1 Released
|
||||
|
||||
=======================
|
||||
Announcing PyYAML-5.4.1
|
||||
Announcing PyYAML-6.0b1
|
||||
=======================
|
||||
|
||||
A new release of PyYAML is now available:
|
||||
https://github.com/yaml/pyyaml/releases/tag/5.4.1
|
||||
A new beta release of PyYAML is now available:
|
||||
https://github.com/yaml/pyyaml/releases/tag/6.0b1
|
||||
|
||||
This release contains a fix for AttributeError during module import in some
|
||||
mixed version installations.
|
||||
The previously-deprecated default loader selection in `yaml.load()` has
|
||||
been removed; `Loader` is now a required argument.
|
||||
|
||||
PyYAML 5.4.1 will be the last release to support Python 2.7 (except for possible
|
||||
critical bug fix releases).
|
||||
Support for Python 2.7 and 3.5 has been dropped, and support for Python 3.10
|
||||
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
|
||||
=======
|
||||
|
||||
* https://github.com/yaml/pyyaml/pull/480 -- Fix stub compat with older pyyaml versions that may unwittingly load it
|
||||
* 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 “hexadecimal”
|
||||
* 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
|
||||
=========
|
||||
|
||||
PyYAML IRC Channel: #pyyaml on irc.freenode.net
|
||||
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/
|
||||
|
@ -83,7 +96,7 @@ The following people are currently responsible for maintaining PyYAML:
|
|||
* Ingy döt Net
|
||||
* Matt Davis
|
||||
|
||||
and many thanks to all who have contribributed!
|
||||
and many thanks to all who have contributed!
|
||||
See: https://github.com/yaml/pyyaml/pulls
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ from .nodes import *
|
|||
from .loader import *
|
||||
from .dumper import *
|
||||
|
||||
__version__ = '5.4.1'
|
||||
__version__ = '6.0b1'
|
||||
try:
|
||||
from .cyaml import *
|
||||
__with_libyaml__ = True
|
||||
|
|
2
setup.py
2
setup.py
|
@ -1,6 +1,6 @@
|
|||
|
||||
NAME = 'PyYAML'
|
||||
VERSION = '5.4.1'
|
||||
VERSION = '6.0b1'
|
||||
DESCRIPTION = "YAML parser and emitter for Python"
|
||||
LONG_DESCRIPTION = """\
|
||||
YAML is a data serialization format designed for human readability
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue