File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed
Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 22For a complete changelog, see:
33
44* https://github.com/yaml/pyyaml/commits/
5- * https://bitbucket.org/xi/pyyaml/commits/
65
7- 6.0.2rc1 (2024-06-10 )
6+ 6.0.2 (2024-08-06 )
87
98* https://github.com/yaml/pyyaml/pull/808 -- Support for Cython 3.x and Python 3.13
109
Original file line number Diff line number Diff line change 88from .loader import *
99from .dumper import *
1010
11- __version__ = '6.0.2rc1 '
11+ __version__ = '6.0.2 '
1212try :
1313 from .cyaml import *
1414 __with_libyaml__ = True
Original file line number Diff line number Diff line change 11
22NAME = 'PyYAML'
3- VERSION = '6.0.2rc1 '
3+ VERSION = '6.0.2 '
44DESCRIPTION = "YAML parser and emitter for Python"
55LONG_DESCRIPTION = """\
66 YAML is a data serialization format designed for human readability
2828 "Programming Language :: Cython" ,
2929 "Programming Language :: Python" ,
3030 "Programming Language :: Python :: 3" ,
31- "Programming Language :: Python :: 3.6" ,
32- "Programming Language :: Python :: 3.7" ,
3331 "Programming Language :: Python :: 3.8" ,
3432 "Programming Language :: Python :: 3.9" ,
3533 "Programming Language :: Python :: 3.10" ,
@@ -351,5 +349,5 @@ def run(self):
351349
352350 distclass = Distribution ,
353351 cmdclass = cmdclass ,
354- python_requires = '>=3.6 ' ,
352+ python_requires = '>=3.8 ' ,
355353 )
You can’t perform that action at this time.
0 commit comments