From c14614270ffbb35bce646a5a6d7e71afd87e82f3 Mon Sep 17 00:00:00 2001 From: "chandr-andr (Kiselev Aleksandr)" Date: Tue, 11 Feb 2025 12:54:08 +0100 Subject: [PATCH 1/2] init repo Signed-off-by: chandr-andr (Kiselev Aleksandr) --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index b51e2d1..e34877c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ "Topic :: System :: Networking", "Development Status :: 3 - Alpha", ] + keywords = ["psqlpy", "postgres", "async"] [tool.poetry.dependencies] From 84b254017dec038012dcba537d65a5412309eabe Mon Sep 17 00:00:00 2001 From: "chandr-andr (Kiselev Aleksandr)" Date: Thu, 14 Aug 2025 20:30:08 +0200 Subject: [PATCH 2/2] Supported new psqlpy version --- .gitignore | 1 + otlp_psqlpy/__init__.py | 23 ++++---- otlp_psqlpy/package.py | 2 +- otlp_psqlpy/version.py | 2 +- poetry.lock | 122 ++++++++++++++++++++++++++++++---------- pyproject.toml | 2 +- 6 files changed, 108 insertions(+), 44 deletions(-) diff --git a/.gitignore b/.gitignore index 3e06b43..2bd6b26 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +_test.py # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] diff --git a/otlp_psqlpy/__init__.py b/otlp_psqlpy/__init__.py index ad94913..c546724 100644 --- a/otlp_psqlpy/__init__.py +++ b/otlp_psqlpy/__init__.py @@ -28,27 +28,26 @@ "fetch_val", ] TRANSACTION_METHODS = [ + "begin", "commit", "rollback", "execute", "execute_batch", + "execute_many", "fetch", "fetch_row", "fetch_val", - "execute_many", + "pipeline", + "create_savepoint", + "rollback_savepoint", + "release_savepoint", ] CURSOR_METHODS = [ "__anext__", - "fetch", - "fetch_next", - "fetch_prior", - "fetch_first", - "fetch_last", - "fetch_absolute", - "fetch_relative", - "fetch_forward_all", - "fetch_backward", - "fetch_backward_all", + "execute", + "fetchone", + "fetchmany", + "fetchall", ] @@ -229,7 +228,7 @@ async def _do_cursor_execute(self, func, instance, args, kwargs): stop = False with self._tracer.start_as_current_span( - f"CURSOR: {instance.cursor_name}", + f"CURSOR", kind=SpanKind.CLIENT, ) as span: if span.is_recording(): diff --git a/otlp_psqlpy/package.py b/otlp_psqlpy/package.py index 5ec4f46..af962e8 100644 --- a/otlp_psqlpy/package.py +++ b/otlp_psqlpy/package.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -_instruments = ("psqlpy >= 0.9.1",) +_instruments = ("psqlpy >= 0.11.6",) diff --git a/otlp_psqlpy/version.py b/otlp_psqlpy/version.py index f961659..d32acf3 100644 --- a/otlp_psqlpy/version.py +++ b/otlp_psqlpy/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.1.4" +__version__ = "0.2.0" diff --git a/poetry.lock b/poetry.lock index 01edd6d..623b3a4 100644 --- a/poetry.lock +++ b/poetry.lock @@ -591,38 +591,102 @@ files = [ [[package]] name = "psqlpy" -version = "0.9.1" +version = "0.11.6" description = "Async PostgreSQL driver for Python written in Rust" optional = false python-versions = ">=3.8" files = [ - {file = "psqlpy-0.9.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:a95858254472224bef2c0ad9e86bdd869d6ec0c4e5eea44b5639edd763c9d243"}, - {file = "psqlpy-0.9.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09439ee2bda40b64df8a8082fdfbdc966210566b68670363462f69ac66807aa5"}, - {file = "psqlpy-0.9.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:69c3cd7631ff9a12381f23d44cb09757a1ea816175e3ef61bc6a69cc4e8cbc01"}, - {file = "psqlpy-0.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:2708af4b9e0a54ed2c73821da5777fded4bb23dbba4f65f712174938b6e40b24"}, - {file = "psqlpy-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:3e6d0a651dd9278fd0b2e15b61a8bf3161d952dc859449b984f612e59f00f643"}, - {file = "psqlpy-0.9.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43f14b505abb8ccf582618dbe6faf5c242bbaa3ee0028ddc49360ce9fe38c66b"}, - {file = "psqlpy-0.9.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a8b8cb2873ea566cab458735a0d0a009f138ef6c91cd56f6e9e896119c428c25"}, - {file = "psqlpy-0.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:370b4e2bdced88ccf044497b139506de1c7d8cfadc37a88a6a815cce434e630c"}, - {file = "psqlpy-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:1238b468f2559c1bf7986e67c8aa28125e4d73e8cfb1cdcf418cb21c34c5f5f6"}, - {file = "psqlpy-0.9.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bc5b2080d991685388cdb247341012d8a1fc356d598550c04ed456f2b06bb044"}, - {file = "psqlpy-0.9.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:33ed6c52b155ff7564a31139923e62fbff4f71274d67f186a8f68482a0cf664b"}, - {file = "psqlpy-0.9.1-cp312-cp312-win_amd64.whl", hash = "sha256:a43d0d0bb060ff4977211fdb9c8ad9f5c1d9da9c8f0f6b76894bf34e2e747f99"}, - {file = "psqlpy-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:94f45e856ac4c35c98f1656c49412e78b658994f07e44c38c7df54c538da7780"}, - {file = "psqlpy-0.9.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bda5c71086d3b9aa2780a6db7b11e71515efdba9727fb648dceac8610fdc711f"}, - {file = "psqlpy-0.9.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:9d00de0b83fbf512c0e4c291e0e72b5f8a81765a4bb4fd1941606e35df4c5577"}, - {file = "psqlpy-0.9.1-cp313-cp313-win_amd64.whl", hash = "sha256:2279911892b9b00279e3ad535c77625bcafa708cb0a112da9f74e597e4898620"}, - {file = "psqlpy-0.9.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b0594bc0db6cc3a75651c3f767d52232c7d79d91657440e0037274f5b331009e"}, - {file = "psqlpy-0.9.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2fe1ea27e77fe0b357f1733695de930a88c354f07f1b592127a34bb4b828eea"}, - {file = "psqlpy-0.9.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:941c86df519fcc21c328bac504c4cb082849dc2edbae07f9307235248899cd60"}, - {file = "psqlpy-0.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:039be0d84013f64b422b0d5fb16e0b53f244ff885869389de763942874e25d4a"}, - {file = "psqlpy-0.9.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b77370a2dba97b55ea07b0eed9ca1bca099bfda281ed357fce512ba6f7e07563"}, - {file = "psqlpy-0.9.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3193a91ab16ebce41a62e3e7bedceb5951dd2c454cca33af09bda3e158dcdb5"}, - {file = "psqlpy-0.9.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:b35361a2e98d537f1894db5c83a1c4339d656a490c154b30a10cd2687affec06"}, - {file = "psqlpy-0.9.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:822a0432c47b8c1ef270ce71009256d5b8ad38b487546bbc198636ee8bb1c402"}, - {file = "psqlpy-0.9.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a153bf44e30f3d6c7f0e3444f774d99b5ad9dc5fab7fce90ea52886d5da1c41"}, - {file = "psqlpy-0.9.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:d2490a04331be21b430ab56bf7a5968f796e440e65e2c1cc1c39a59bf31834a4"}, - {file = "psqlpy-0.9.1.tar.gz", hash = "sha256:75e7823eb94ebbc0ff9cf7480a3db4127c9c0f42b55e0833cc64e422ea38bea2"}, + {file = "psqlpy-0.11.6-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:952e2e4e0bdaa29eaf5967a82f2368f03639f2dfbe9d3c7e0b97b55830a79b27"}, + {file = "psqlpy-0.11.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2955068c9bd5873ef77a5b86bcbe4825ce859a55c2c06ab47743d1c075f21e6c"}, + {file = "psqlpy-0.11.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec7677fc00eee7df29c5727eca54ea496686980ba00dd48311f231b06e01e12e"}, + {file = "psqlpy-0.11.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:91dbf904c693d6432ff3a221423d62968a212151b1e945122e74dddce813e150"}, + {file = "psqlpy-0.11.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9a8f7813be18eda28c313c7fbe94ea2f9a3ca8d376d1a7b04ae4f5a74beb4009"}, + {file = "psqlpy-0.11.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8411f44e2235bd3f71ed9cc6cca1b889be67e9edae2f8a33698aaaab9ea7a030"}, + {file = "psqlpy-0.11.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d760b4e0f41e9823a686fed49271abe8be8350be2d8f0c9f75c5a1c180f6c72a"}, + {file = "psqlpy-0.11.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fa27eaf360da589fc5212bf58b0edc632f894f8c70ab16c790b55e3bbeedb8e"}, + {file = "psqlpy-0.11.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2f6cc54f33d377dd8db562b4b6691f2af9c9bedf367bc5d7267547bf74d1ccce"}, + {file = "psqlpy-0.11.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:38dd049421c6c7b8d6ee4a88d6404f2af2f4a5cf7722e70201bb1709ba371fb5"}, + {file = "psqlpy-0.11.6-cp310-cp310-win32.whl", hash = "sha256:f55f816f177db68ab216c8b49432dbf6144db1a3e2867f9f4d2feae0160f7f53"}, + {file = "psqlpy-0.11.6-cp310-cp310-win_amd64.whl", hash = "sha256:efc3a488d1cd63813be4f1863de1da9b3ae8d82e270113f365cfcbc2cf961083"}, + {file = "psqlpy-0.11.6-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:205936327b0830298864c46ae2a43ff93a66985c7ee4e66cba7991592393c5c7"}, + {file = "psqlpy-0.11.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0ef7e8af9dc40cfd24df7d680e4c9277d6c994acdd58da1dabe823247dbffad9"}, + {file = "psqlpy-0.11.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55d8ff15e7781e0d7e70f22d8643eb952010623ba34ae8c4868cf2ec58ff24eb"}, + {file = "psqlpy-0.11.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:11ab85aa5dbf64725f6d4ed809bef814ad9023891381d9775b9aaecf0f9b420e"}, + {file = "psqlpy-0.11.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a6fbf09fdc049b7dd6f820e61d59ccf325a4f89f2bd133e0f87cb1937b0bba8b"}, + {file = "psqlpy-0.11.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e09b716eebc184e08125c858dda6bf7c9f3be6bc9f9bd28f95a7cdceac0dff82"}, + {file = "psqlpy-0.11.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b1c1d4a21000ee8dcb70ba7a6de5426f49354adcc205786b9a95bdd4e6151ba1"}, + {file = "psqlpy-0.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d4055b8496b9634540af83772575f3c8c08771279809e9fb0f1c04a8e9b8ece"}, + {file = "psqlpy-0.11.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:02a5c726d804c14517040ddaee3f698c0b18ddb7aeeef08c490a909ad3a170aa"}, + {file = "psqlpy-0.11.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:10521d700d136e08a3817ba78a494171fc6d52749acda7b7e33339120297e8ae"}, + {file = "psqlpy-0.11.6-cp311-cp311-win32.whl", hash = "sha256:1e06d5d7c437246568142caf675ec33c9f29be2683dc1793d3030e61bced8e76"}, + {file = "psqlpy-0.11.6-cp311-cp311-win_amd64.whl", hash = "sha256:3c20cae9fda38654931682c688f65610d93f7539de46f5b7353da8633815d166"}, + {file = "psqlpy-0.11.6-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:fbfda19815ae02757b69639b21e0492dbe28d832fdc0cd083b599745c72f3287"}, + {file = "psqlpy-0.11.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b6ff1d79ec1e1028ac30cb08381821a4a78ecd823dd2be6cf779dde008da9dde"}, + {file = "psqlpy-0.11.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b07b5a46a7a8b08e9d9cd7c7765a2d2b875af2b6aa26fe30433b42de56f8bf3"}, + {file = "psqlpy-0.11.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:170059e1ad89a66c3e7106cae1eaf5bcb6e5a13fa6565c59e1858e862c50f7ec"}, + {file = "psqlpy-0.11.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:85986d0b516457c088b22dfbcbe6ef060d9ee9d6a120c38f29d4b1104826a8f0"}, + {file = "psqlpy-0.11.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:08dc8ccf395e0abeb1425fdda8d3d9b22840ff27358bdcbbe01a0ee1b780b549"}, + {file = "psqlpy-0.11.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7fa85619260d86937f95ad6c089968b8f03af3b62623982df468b72fde667ff5"}, + {file = "psqlpy-0.11.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:461f5bd3a226096ff7fb2e8dc702e48b231d7896151621c1f9f0f1cd9475d8e7"}, + {file = "psqlpy-0.11.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3199ff6bf5a92e98546288ed23a80c586e663583cc8e15ffdc24ed1cad4b2251"}, + {file = "psqlpy-0.11.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e15da8ee6c853397a9c9dc555c3b57f848a7e7a25a0595fdbaa3c19a390160cf"}, + {file = "psqlpy-0.11.6-cp312-cp312-win32.whl", hash = "sha256:0e5b482677e21d7f03455105ac4b2ffc11411d3e7409da8870a866b3558c902b"}, + {file = "psqlpy-0.11.6-cp312-cp312-win_amd64.whl", hash = "sha256:6ef2ab055a11f920c8a021561acc9c1a58d06c215bb8ac992ddf7f79e44f7c89"}, + {file = "psqlpy-0.11.6-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:1508a64de1d32f24b7518521fbcfa6e2b775edd615c26491c50acefe617bef36"}, + {file = "psqlpy-0.11.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4e35a360e6f900c2cb7f067a4ab94f7ee0c84eb240ade31f8e743a923b14f184"}, + {file = "psqlpy-0.11.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e6ddc99e9750a4227ac84caef469d7a5b991df32aca2f8e3a0b01ce870c8c93e"}, + {file = "psqlpy-0.11.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a0b9905602f41770bd43d85be4d9159db719c2c82127c396625e3a7e15f2dd39"}, + {file = "psqlpy-0.11.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:af8b5e3f013235355e022a7f07179948dbe9645ae990e13cfa01c4bfcba73764"}, + {file = "psqlpy-0.11.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0dceb698fb324729a31b3668eeb65bf107af78bdc14f3d10bf27658242fc3e46"}, + {file = "psqlpy-0.11.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:541c8025f94226d2521c4e8de1cbc22a5b180f0bbcd75925fbfc04cd849483d8"}, + {file = "psqlpy-0.11.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c7e34ddba63cfe66aba152df22c9c6b505974069e6ad53b54389bc46b0fc8e6c"}, + {file = "psqlpy-0.11.6-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f5c30dabc70b93627d6897054ab2c6c74c65f00ca11f3bc755044f753868c0e4"}, + {file = "psqlpy-0.11.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b633ae41fd5d1295655a338c595af3f020722af312c3b541b53d1caa6882afe8"}, + {file = "psqlpy-0.11.6-cp313-cp313-win32.whl", hash = "sha256:6aca8c34509c25e49c651ec59b7e164ea45a63111c0c11bdadc222c8ca714eed"}, + {file = "psqlpy-0.11.6-cp313-cp313-win_amd64.whl", hash = "sha256:8e601faf0e7cf771fa118e89487c805a53271185aea63025b18914feb982ee4a"}, + {file = "psqlpy-0.11.6-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3a36263ac9ed535cb066dd9ffa75eba7c2a3d622ebadf1ee90a1adaf33e1c3dd"}, + {file = "psqlpy-0.11.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:efa42516e911ed9c76ab054fd061d2456f89f20d55807d645a9ad47571234b57"}, + {file = "psqlpy-0.11.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5eaaa658b6204103ad7f03dbc762baed3803de9303d94eac551ac05c57758423"}, + {file = "psqlpy-0.11.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:392a763fc2c992d1e45c89a184d3de87189a9f247995d3e16f0871f67a67b781"}, + {file = "psqlpy-0.11.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff00b4c53f6f188f48ea8d58f63f8699c623bb6ee302c99bf559f61bc78ca5b8"}, + {file = "psqlpy-0.11.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d079161fdaf4e3d2c336309161cc8a1f60bda03562872c479e805f2ccf5e7ea0"}, + {file = "psqlpy-0.11.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7afa10100009833a40fbc92993ce200d46081293472f6b68aefeafba206517b5"}, + {file = "psqlpy-0.11.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:295df1f589e65e285e2cad23b4000572f083a563dd5a3ddd043de3a9e9027ab0"}, + {file = "psqlpy-0.11.6-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1ea482e2b4df2b7f5393c35f64927c4fc0ecaf57455f41127cdc78307bbb2320"}, + {file = "psqlpy-0.11.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:f231871393ff627fdb36607b8d4113bf901e3838bf573003ace6177260db61d4"}, + {file = "psqlpy-0.11.6-cp39-cp39-win32.whl", hash = "sha256:008407cac3591a7cdf45250727df2aaffe1e077aa40d0d5ef858998078c93c5f"}, + {file = "psqlpy-0.11.6-cp39-cp39-win_amd64.whl", hash = "sha256:b6dad4f42b00b34b540cc487e923e181726b887074093e3cdea21d51fc67e3a7"}, + {file = "psqlpy-0.11.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:80ed664f40b259f65c5983e529fd32212ffcb5caa5cddb8ed899f3939547c5c7"}, + {file = "psqlpy-0.11.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b01cc82cf9af3b5237d8059cdfcf41fce656d300f768e948c20358ce94774862"}, + {file = "psqlpy-0.11.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d2eb9dcb0a7f60d045bbe8061b8318b7718a4093eac9cd65fd3c00ebf1544b4"}, + {file = "psqlpy-0.11.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e14a5539520854e1fd163016a325b39ddbd1edf621492d45383888667847575a"}, + {file = "psqlpy-0.11.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e706d106ca3ce4e67155a229be6e58cf0dcab354be41b2f5a6faf384cc1b049"}, + {file = "psqlpy-0.11.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:60d4afcf550f8bd2a3ad131b95ad1203149109bc40d07351c4619f79829ed411"}, + {file = "psqlpy-0.11.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:809b2cac178d4a707c025963ad93dc5ceef05772f3ee81a1fba664c639eeabcf"}, + {file = "psqlpy-0.11.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d25f2a6551b8b4ae61e5993705ed8a53d3d55f02036b473379e2c3a8208cbcfc"}, + {file = "psqlpy-0.11.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:a94ed32504d9193a8fa77fd98e9abb7f05d757f75af8e716e67f9a7876449d06"}, + {file = "psqlpy-0.11.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e4038d7ccc6aef8d72f64d9c1a69be0174b7f014a01b7a4193b2b9ddd5d3606e"}, + {file = "psqlpy-0.11.6-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:732d6a85c1a69542eebd26fb5b3062eb496cb8d4577d814b6ec523a375b9c0e1"}, + {file = "psqlpy-0.11.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:08a29fd10449d4784c8d90a34265a9f642eec7ede5a04eba3fc714ce13e3531d"}, + {file = "psqlpy-0.11.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4a43c734f27d1dfcc68d45a4462b6274d085f6cafdd7d0699bc10306f956dee"}, + {file = "psqlpy-0.11.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dbcf90d8f3910a1d5039367787bd5a5e354bcba5e2d061c0273c476b68ea8834"}, + {file = "psqlpy-0.11.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:463cfdf4a0c84f8d9a6a024a47d1a963db4321cfdca5e9f0c943c91264a64eeb"}, + {file = "psqlpy-0.11.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f601e96a5d11c81dab2c0de3451203a7c5d148f313fc9774dfd258d4683ea78c"}, + {file = "psqlpy-0.11.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:782b0eed2587e91a46dd54300273bbfc55a5d358fd0d9d28311647e2e8412e03"}, + {file = "psqlpy-0.11.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0c63c9a41ec6a6abde2c7b9dcb271c08896259911e4268124bfdd632f2c7435"}, + {file = "psqlpy-0.11.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:33768b71afde498211f271f5ea0c430ed8ddfdc7ee5f541de4761222d8633c3f"}, + {file = "psqlpy-0.11.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:820fbeac25919fb463de3a50594ee12cd434fa539e483adfda87404dfa602b73"}, + {file = "psqlpy-0.11.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:713ab646c6eb4a79bb012fceddc8261d8945f973a4e569ed66bd75efea538145"}, + {file = "psqlpy-0.11.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c5edca9a74a5321049fd26317941fe997a7f860ee5c18fa1210ac57849b1fa50"}, + {file = "psqlpy-0.11.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3751b11b9852204d9d7f9a4a0013885e50b1efe9c519705ea3d48681c517dd9a"}, + {file = "psqlpy-0.11.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a218444193d30305088fb10b5f914454213d30ce72ec1fbc2d704955611a5d6f"}, + {file = "psqlpy-0.11.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:726ff110b1165ad500f8f815710d6c74e2f80f96f8e6837e01fe0a0e5d70584a"}, + {file = "psqlpy-0.11.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f84052981060673020c9b0fe0531df067df079350b9155a600f310915f738b27"}, + {file = "psqlpy-0.11.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3607ba741ada381bb672618c0fe2cc8e0c4bc559cdd444d17c9079947ad94fa8"}, + {file = "psqlpy-0.11.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e0ee9c153fb7500da1d717faecd28d99994cb8419dbe0be4b89e8821b4e9291"}, + {file = "psqlpy-0.11.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:f06cd4e031364c9faa41be8481bcce2876eb7ba1b1b769aa0edb05af17af3b1b"}, + {file = "psqlpy-0.11.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:d4a128962d01a82a9e0447e4626916d2f1ae9722d0c7898009d8c2a6e0d0ea2b"}, + {file = "psqlpy-0.11.6.tar.gz", hash = "sha256:7dd11253fb17059db9ddf41c0b96497ba107855905fbcdfee7f7ce3ea1745adb"}, ] [[package]] @@ -852,4 +916,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "13b3612e3bbb95c3ab2f935e8048dc284f6c040f87356274762cb86dbc71f1d1" +content-hash = "3db36c86ed7aa846682bee7f6dbf8ed055dc284fc6fab5b7e654cfa810b518b7" diff --git a/pyproject.toml b/pyproject.toml index e34877c..1b61a99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ python = "^3.9" opentelemetry-exporter-otlp = "^1.30.0" opentelemetry-sdk = "^1.30.0" opentelemetry-instrumentation = "^0.51b0" -psqlpy = "^0.9.1" +psqlpy = "0.11.6" [tool.poetry.group.dev.dependencies]