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://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/42 -- Install tox in a virtualenv

View File

@ -33,7 +33,9 @@ testall:
${PYTHON} setup.py test
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:
${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:
'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'.
Submit bug reports and feature requests to the PyYAML bug tracker:
'https://github.com/yaml/pyyaml/issues'.
PyYAML is written by Kirill Simonov <xi@resolvent.net>. It is released
under the MIT license. See the file LICENSE for more details.
The PyYAML module was written by Kirill Simonov <xi@resolvent.net>.
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>
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
@ -40,10 +52,9 @@ Resources
PyYAML IRC Channel: #pyyaml on irc.freenode.net
PyYAML homepage: https://github.com/yaml/pyyaml
PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation
Source and binary installers: https://pypi.python.org/pypi/PyYAML/3.12
PyYAML GitHub repository: https://github.com/yaml/pyyaml/
Submit a bug report: https://github.com/yaml/pyyaml/issues
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
@ -92,12 +103,12 @@ Maintainers
The following people are responsible for maintaining PyYAML:
* Kirill Simonov
* Ian Cordasco
* Ingy döt Net
* Donald Stufft
* Ian Cordasco
* Tina Mueller
* Alex Gaynor
* Donald Stufft
* Matt Davis
and many thanks to all who have contribributed!
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.
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 dumper import *
__version__ = '4.01'
__version__ = '4.1'
try:
from cyaml import *

View File

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

View File

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