diff options
author | robot-piglet <[email protected]> | 2025-10-10 20:00:08 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-10-10 20:12:30 +0300 |
commit | 68686625b2bb7fc5d0d2d33494901ecfebc7834d (patch) | |
tree | 050b988731a732d3c9bc1dbb451c4eaeb488f8a4 /contrib/python/PyYAML/py3 | |
parent | 1ddbd5c59d929a7248a5ecfbf57ef71651f62449 (diff) |
Intermediate changes
commit_hash:b6799a9a4460b246e94cc2e1b2ff89b8ecd7694a
Diffstat (limited to 'contrib/python/PyYAML/py3')
-rw-r--r-- | contrib/python/PyYAML/py3/.dist-info/METADATA | 17 | ||||
-rw-r--r-- | contrib/python/PyYAML/py3/ya.make | 2 | ||||
-rw-r--r-- | contrib/python/PyYAML/py3/yaml/__init__.py | 2 | ||||
-rw-r--r-- | contrib/python/PyYAML/py3/yaml/_yaml.pyx | 1 |
4 files changed, 18 insertions, 4 deletions
diff --git a/contrib/python/PyYAML/py3/.dist-info/METADATA b/contrib/python/PyYAML/py3/.dist-info/METADATA index db029b770cd..702ee6da586 100644 --- a/contrib/python/PyYAML/py3/.dist-info/METADATA +++ b/contrib/python/PyYAML/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ -Metadata-Version: 2.1 +Metadata-Version: 2.4 Name: PyYAML -Version: 6.0.2 +Version: 6.0.3 Summary: YAML parser and emitter for Python Home-page: https://pyyaml.org/ Download-URL: https://pypi.org/project/PyYAML/ @@ -26,12 +26,25 @@ Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: 3.14 Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Topic :: Software Development :: Libraries :: Python Modules Classifier: Topic :: Text Processing :: Markup Requires-Python: >=3.8 License-File: LICENSE +Dynamic: author +Dynamic: author-email +Dynamic: classifier +Dynamic: description +Dynamic: download-url +Dynamic: home-page +Dynamic: license +Dynamic: license-file +Dynamic: platform +Dynamic: project-url +Dynamic: requires-python +Dynamic: summary YAML is a data serialization format designed for human readability and interaction with scripting languages. PyYAML is a YAML parser diff --git a/contrib/python/PyYAML/py3/ya.make b/contrib/python/PyYAML/py3/ya.make index 65339b34e4b..db1ae6b91e9 100644 --- a/contrib/python/PyYAML/py3/ya.make +++ b/contrib/python/PyYAML/py3/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(6.0.2) +VERSION(6.0.3) LICENSE(MIT) diff --git a/contrib/python/PyYAML/py3/yaml/__init__.py b/contrib/python/PyYAML/py3/yaml/__init__.py index 2ec4f203c7e..d58f0891737 100644 --- a/contrib/python/PyYAML/py3/yaml/__init__.py +++ b/contrib/python/PyYAML/py3/yaml/__init__.py @@ -8,7 +8,7 @@ from .nodes import * from .loader import * from .dumper import * -__version__ = '6.0.2' +__version__ = '6.0.3' try: from .cyaml import * __with_libyaml__ = True diff --git a/contrib/python/PyYAML/py3/yaml/_yaml.pyx b/contrib/python/PyYAML/py3/yaml/_yaml.pyx index e3e93e2cefc..de29a0bffc1 100644 --- a/contrib/python/PyYAML/py3/yaml/_yaml.pyx +++ b/contrib/python/PyYAML/py3/yaml/_yaml.pyx @@ -1,3 +1,4 @@ +# cython: freethreading_compatible = True import yaml |