diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2023-10-17 11:06:04 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2023-10-17 11:34:11 +0300 |
commit | 8bf04b6c1bdf0eb2034951f305e2597adbdfcc36 (patch) | |
tree | 49c997dd7babb27014e1e7440806be671e08fab3 /contrib/python/wcwidth/py3 | |
parent | 62236bef9a9ee3062b7276675a6371bdb8cece59 (diff) | |
download | ydb-8bf04b6c1bdf0eb2034951f305e2597adbdfcc36.tar.gz |
Update contrib/python/wcwidth/py3 to 0.2.8
Diffstat (limited to 'contrib/python/wcwidth/py3')
-rw-r--r-- | contrib/python/wcwidth/py3/.dist-info/METADATA | 6 | ||||
-rw-r--r-- | contrib/python/wcwidth/py3/README.rst | 4 | ||||
-rw-r--r-- | contrib/python/wcwidth/py3/tests/__init__.py | 1 | ||||
-rw-r--r-- | contrib/python/wcwidth/py3/wcwidth/__init__.py | 2 | ||||
-rw-r--r-- | contrib/python/wcwidth/py3/wcwidth/version.json | 1 | ||||
-rw-r--r-- | contrib/python/wcwidth/py3/ya.make | 3 |
6 files changed, 11 insertions, 6 deletions
diff --git a/contrib/python/wcwidth/py3/.dist-info/METADATA b/contrib/python/wcwidth/py3/.dist-info/METADATA index 18a0dea285..0e88c588c1 100644 --- a/contrib/python/wcwidth/py3/.dist-info/METADATA +++ b/contrib/python/wcwidth/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: wcwidth -Version: 0.2.7 +Version: 0.2.8 Summary: Measures the displayed width of unicode strings in a terminal Home-page: https://github.com/jquast/wcwidth Author: Jeff Quast @@ -248,8 +248,12 @@ Other Languages History ======= +0.2.8 *2023-09-30* + * Include requirements files in the source distibution (`PR #82`). + 0.2.7 *2023-09-28* * **Updated** tables to include Unicode Specification 15.1.0. + * Include ``bin``, ``docs``, and ``tox.ini`` in the source distribution 0.2.6 *2023-01-14* * **Updated** tables to include Unicode Specification 14.0.0 and 15.0.0. diff --git a/contrib/python/wcwidth/py3/README.rst b/contrib/python/wcwidth/py3/README.rst index cde8aab0d8..8a02758c42 100644 --- a/contrib/python/wcwidth/py3/README.rst +++ b/contrib/python/wcwidth/py3/README.rst @@ -217,8 +217,12 @@ Other Languages History ======= +0.2.8 *2023-09-30* + * Include requirements files in the source distibution (`PR #82`). + 0.2.7 *2023-09-28* * **Updated** tables to include Unicode Specification 15.1.0. + * Include ``bin``, ``docs``, and ``tox.ini`` in the source distribution 0.2.6 *2023-01-14* * **Updated** tables to include Unicode Specification 14.0.0 and 15.0.0. diff --git a/contrib/python/wcwidth/py3/tests/__init__.py b/contrib/python/wcwidth/py3/tests/__init__.py deleted file mode 100644 index 381300347d..0000000000 --- a/contrib/python/wcwidth/py3/tests/__init__.py +++ /dev/null @@ -1 +0,0 @@ -"""This file intentionally left blank.""" diff --git a/contrib/python/wcwidth/py3/wcwidth/__init__.py b/contrib/python/wcwidth/py3/wcwidth/__init__.py index 437e8d48f5..97c423d96a 100644 --- a/contrib/python/wcwidth/py3/wcwidth/__init__.py +++ b/contrib/python/wcwidth/py3/wcwidth/__init__.py @@ -25,4 +25,4 @@ __all__ = ('wcwidth', 'wcswidth', 'list_versions') # We also used pkg_resources to load unicode version tables from version.json, # generated by bin/update-tables.py, but some environments are unable to # import pkg_resources for one reason or another, yikes! -__version__ = '0.2.7' +__version__ = '0.2.8' diff --git a/contrib/python/wcwidth/py3/wcwidth/version.json b/contrib/python/wcwidth/py3/wcwidth/version.json deleted file mode 100644 index 59f1aa0eb8..0000000000 --- a/contrib/python/wcwidth/py3/wcwidth/version.json +++ /dev/null @@ -1 +0,0 @@ -{"tables": ["4.1.0", "5.0.0", "5.1.0", "5.2.0", "6.0.0", "6.1.0", "6.2.0", "6.3.0", "7.0.0", "8.0.0", "9.0.0", "10.0.0", "11.0.0", "12.0.0", "12.1.0", "13.0.0"], "package": "0.2.4", "default": "8.0.0"} diff --git a/contrib/python/wcwidth/py3/ya.make b/contrib/python/wcwidth/py3/ya.make index 476e4d6938..30441409b1 100644 --- a/contrib/python/wcwidth/py3/ya.make +++ b/contrib/python/wcwidth/py3/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(0.2.7) +VERSION(0.2.8) LICENSE(MIT) @@ -21,7 +21,6 @@ RESOURCE_FILES( PREFIX contrib/python/wcwidth/py3/ .dist-info/METADATA .dist-info/top_level.txt - wcwidth/version.json ) END() |