Skip to content

Commit b2cb971

Browse files
committed
release 6.0.2
1 parent dd9f0e1 commit b2cb971

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

CHANGES

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
For 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

lib/yaml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .loader import *
99
from .dumper import *
1010

11-
__version__ = '6.0.2rc1'
11+
__version__ = '6.0.2'
1212
try:
1313
from .cyaml import *
1414
__with_libyaml__ = True

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
NAME = 'PyYAML'
3-
VERSION = '6.0.2rc1'
3+
VERSION = '6.0.2'
44
DESCRIPTION = "YAML parser and emitter for Python"
55
LONG_DESCRIPTION = """\
66
YAML is a data serialization format designed for human readability
@@ -28,8 +28,6 @@
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
)

0 commit comments

Comments
 (0)