diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-04-16 09:37:33 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-04-16 09:45:27 +0300 |
commit | c56359b9090f00a5a3c40c739daf6848cfc40689 (patch) | |
tree | f2b014131fe4d4106ff8cc76afcc5c7516a0b6c7 | |
parent | a124ba45ea6873bedcd2c81515ee399c8de92363 (diff) | |
download | ydb-c56359b9090f00a5a3c40c739daf6848cfc40689.tar.gz |
Intermediate changes
-rw-r--r-- | contrib/python/pg8000/.dist-info/METADATA | 21 | ||||
-rw-r--r-- | contrib/python/pg8000/README.md | 5 | ||||
-rw-r--r-- | contrib/python/pg8000/ya.make | 2 |
3 files changed, 19 insertions, 9 deletions
diff --git a/contrib/python/pg8000/.dist-info/METADATA b/contrib/python/pg8000/.dist-info/METADATA index 54299a8c78..ba1c9b0727 100644 --- a/contrib/python/pg8000/.dist-info/METADATA +++ b/contrib/python/pg8000/.dist-info/METADATA @@ -1,13 +1,15 @@ -Metadata-Version: 2.1 +Metadata-Version: 2.3 Name: pg8000 -Version: 1.31.0 +Version: 1.31.1 Summary: PostgreSQL interface library -License: BSD 3-Clause License Project-URL: Homepage, https://github.com/tlocke/pg8000 -Keywords: postgresql,dbapi +License: BSD 3-Clause License +License-File: LICENSE +Keywords: dbapi,postgresql Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.8 @@ -17,14 +19,12 @@ Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: Implementation Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy -Classifier: Operating System :: OS Independent Classifier: Topic :: Database :: Front-Ends Classifier: Topic :: Software Development :: Libraries :: Python Modules Requires-Python: >=3.8 +Requires-Dist: python-dateutil>=2.8.2 +Requires-Dist: scramp>=1.4.4 Description-Content-Type: text/markdown -License-File: LICENSE -Requires-Dist: scramp >=1.4.4 -Requires-Dist: python-dateutil >=2.8.2 # pg8000 @@ -2068,6 +2068,11 @@ twine upload dist/* ## Release Notes +### Version 1.31.1, 2024-04-01 + +- Move to src style layout, and also for packaging use Hatch rather than setuptools. This means that if the source distribution has a directory added to it (as is needed for packaging for OS distributions) the package can still be built. + + ### Version 1.31.0, 2024-03-31 - Now the `ssl_context` connection parameter can have one of four values: diff --git a/contrib/python/pg8000/README.md b/contrib/python/pg8000/README.md index 2583174426..306734221a 100644 --- a/contrib/python/pg8000/README.md +++ b/contrib/python/pg8000/README.md @@ -2040,6 +2040,11 @@ twine upload dist/* ## Release Notes +### Version 1.31.1, 2024-04-01 + +- Move to src style layout, and also for packaging use Hatch rather than setuptools. This means that if the source distribution has a directory added to it (as is needed for packaging for OS distributions) the package can still be built. + + ### Version 1.31.0, 2024-03-31 - Now the `ssl_context` connection parameter can have one of four values: diff --git a/contrib/python/pg8000/ya.make b/contrib/python/pg8000/ya.make index 49f7c20bfe..33a1150199 100644 --- a/contrib/python/pg8000/ya.make +++ b/contrib/python/pg8000/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(1.31.0) +VERSION(1.31.1) LICENSE(BSD-3-Clause) |