Changes for 4.1 release

This commit is contained in:
Alex Gaynor 2018-06-24 23:56:07 -04:00 committed by Ingy döt Net
parent 4c2e993321
commit d3eb7daf88
7 changed files with 42 additions and 22 deletions

View File

@ -4,8 +4,8 @@ For a complete changelog, see:
* https://github.com/yaml/pyyaml/commits/ * https://github.com/yaml/pyyaml/commits/
* https://bitbucket.org/xi/pyyaml/commits/ * https://bitbucket.org/xi/pyyaml/commits/
4.01 (2018-06-26) 4.1 (2018-06-26)
----------------- ----------------
* https://github.com/yaml/pyyaml/pull/35 -- Some modernization of the test running * https://github.com/yaml/pyyaml/pull/35 -- Some modernization of the test running
* https://github.com/yaml/pyyaml/pull/42 -- Install tox in a virtualenv * https://github.com/yaml/pyyaml/pull/42 -- Install tox in a virtualenv

View File

@ -33,7 +33,9 @@ testall:
${PYTHON} setup.py test ${PYTHON} setup.py test
dist: dist:
${PYTHON} setup.py --with-libyaml sdist --formats=zip,gztar @# No longer uploading a zip file to pypi
@# ${PYTHON} setup.py --with-libyaml sdist --formats=zip,gztar
${PYTHON} setup.py --with-libyaml sdist --formats=gztar
windist: windist:
${PYTHON} setup.py --with-libyaml bdist_wininst ${PYTHON} setup.py --with-libyaml bdist_wininst

11
README
View File

@ -24,11 +24,16 @@ For more information, check the PyYAML homepage:
For PyYAML tutorial and reference, see: For PyYAML tutorial and reference, see:
'http://pyyaml.org/wiki/PyYAMLDocumentation'. 'http://pyyaml.org/wiki/PyYAMLDocumentation'.
Post your questions and opinions to the YAML-Core mailing list: Discuss PyYAML with the maintainers in IRC #pyyaml irc.freenode.net.
You may also use the YAML-Core mailing list:
'http://lists.sourceforge.net/lists/listinfo/yaml-core'. 'http://lists.sourceforge.net/lists/listinfo/yaml-core'.
Submit bug reports and feature requests to the PyYAML bug tracker: Submit bug reports and feature requests to the PyYAML bug tracker:
'https://github.com/yaml/pyyaml/issues'. 'https://github.com/yaml/pyyaml/issues'.
PyYAML is written by Kirill Simonov <xi@resolvent.net>. It is released The PyYAML module was written by Kirill Simonov <xi@resolvent.net>.
under the MIT license. See the file LICENSE for more details. It is currently maintained by the YAML and Python communities.
PyYAML is released under the MIT license.
See the file LICENSE for more details.

View File

@ -1,14 +1,26 @@
From: Ingy döt Net <ingy@ingy.net> From: Ingy döt Net <ingy@ingy.net>
To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net
Subject: [ANN] PyYAML-4.01: YAML parser and emitter for Python Subject: [ANN] PyYAML-4.1: YAML parser and emitter for Python
======================== =======================
Announcing PyYAML-4.01 Announcing PyYAML-4.1
======================== =======================
A new release of PyYAML is now available: A new MAJOR RELEASE of PyYAML is now available:
https://pypi.org/project/PyYAML/
https://pypi.org/project/PyYAML/ This is the first release of PyYAML under a new maintenance team. In August
2016, maintenance of PyYAML and LibYAML was turned over from the original
author, Kirill Simonov, to Ian Cordasco and Ingy döt Net.
The canonical source repo moved:
from: https://bitbucket.org/xi/pyyaml/
to: https://github.com/yaml/pyyaml
The PyYAML project is now maintained by the YAML and Python communities.
Planning happens on the #yaml-dev, #pyyaml and #libyaml IRC channels on
irc.freenode.net.
Changes Changes
@ -40,10 +52,9 @@ Resources
PyYAML IRC Channel: #pyyaml on irc.freenode.net PyYAML IRC Channel: #pyyaml on irc.freenode.net
PyYAML homepage: https://github.com/yaml/pyyaml PyYAML homepage: https://github.com/yaml/pyyaml
PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation
Source and binary installers: https://pypi.python.org/pypi/PyYAML/3.12 Source and binary installers: https://pypi.org/project/PyYAML/
GitHub repository: https://github.com/yaml/pyyaml/
PyYAML GitHub repository: https://github.com/yaml/pyyaml/ Bug tracking: https://github.com/yaml/pyyaml/issues
Submit a bug report: https://github.com/yaml/pyyaml/issues
YAML homepage: http://yaml.org/ YAML homepage: http://yaml.org/
YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core
@ -92,12 +103,12 @@ Maintainers
The following people are responsible for maintaining PyYAML: The following people are responsible for maintaining PyYAML:
* Kirill Simonov
* Ian Cordasco
* Ingy döt Net * Ingy döt Net
* Donald Stufft * Ian Cordasco
* Tina Mueller * Tina Mueller
* Alex Gaynor * Alex Gaynor
* Donald Stufft
* Matt Davis
and many thanks to all who have contribributed! and many thanks to all who have contribributed!
See: https://github.com/yaml/pyyaml/pulls See: https://github.com/yaml/pyyaml/pulls
@ -113,3 +124,4 @@ The PyYAML module was written by Kirill Simonov <xi@resolvent.net>.
It is currently maintained by the YAML and Python communities. It is currently maintained by the YAML and Python communities.
PyYAML is released under the MIT license. PyYAML is released under the MIT license.
See the file LICENSE for more details.

View File

@ -8,7 +8,7 @@ from nodes import *
from loader import * from loader import *
from dumper import * from dumper import *
__version__ = '4.01' __version__ = '4.1'
try: try:
from cyaml import * from cyaml import *

View File

@ -8,7 +8,7 @@ from .nodes import *
from .loader import * from .loader import *
from .dumper import * from .dumper import *
__version__ = '4.01' __version__ = '4.1'
try: try:
from .cyaml import * from .cyaml import *
__with_libyaml__ = True __with_libyaml__ = True

View File

@ -1,6 +1,6 @@
NAME = 'PyYAML' NAME = 'PyYAML'
VERSION = '4.01' VERSION = '4.1'
DESCRIPTION = "YAML parser and emitter for Python" DESCRIPTION = "YAML parser and emitter for Python"
LONG_DESCRIPTION = """\ LONG_DESCRIPTION = """\
YAML is a data serialization format designed for human readability YAML is a data serialization format designed for human readability
@ -295,4 +295,5 @@ if __name__ == '__main__':
distclass=Distribution, distclass=Distribution,
cmdclass=cmdclass, cmdclass=cmdclass,
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
) )