psycopg-binary 3.2.9__cp39-cp39-win_amd64.whl → 3.2.11__cp39-cp39-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of psycopg-binary might be problematic. Click here for more details.
- psycopg_binary/__init__.py +6 -6
- psycopg_binary/_psycopg.cp39-win_amd64.pyd +0 -0
- psycopg_binary/_psycopg.pyi +4 -4
- psycopg_binary/pq.cp39-win_amd64.pyd +0 -0
- psycopg_binary/version.py +2 -2
- psycopg_binary-3.2.11.dist-info/DELVEWHEEL +2 -0
- {psycopg_binary-3.2.9.dist-info → psycopg_binary-3.2.11.dist-info}/METADATA +4 -3
- psycopg_binary-3.2.11.dist-info/RECORD +17 -0
- {psycopg_binary-3.2.9.dist-info → psycopg_binary-3.2.11.dist-info}/WHEEL +1 -1
- psycopg_binary.libs/.load-order-psycopg_binary-3.2.11 +3 -0
- psycopg_binary.libs/{libcrypto-3-x64-d0e70c80d540c0b3b33d7e90a4c21953.dll → libcrypto-3-x64-7260c84db9bb4567f053f710b5c794a0.dll} +0 -0
- psycopg_binary.libs/libpq-e22359b42292b4ed846c3fdc76d7fbdc.dll +0 -0
- psycopg_binary.libs/libssl-3-x64-b3d6391b1e6176587669f6a8f50df00f.dll +0 -0
- psycopg_binary-3.2.9.dist-info/DELVEWHEEL +0 -2
- psycopg_binary-3.2.9.dist-info/RECORD +0 -17
- psycopg_binary.libs/.load-order-psycopg_binary-3.2.9 +0 -3
- psycopg_binary.libs/libpq-1d16f3083bac70e1aa4e00572bae0503.dll +0 -0
- psycopg_binary.libs/libssl-3-x64-cf9f368bee0001756e3ba14230e66396.dll +0 -0
- {psycopg_binary-3.2.9.dist-info → psycopg_binary-3.2.11.dist-info}/licenses/LICENSE.txt +0 -0
- {psycopg_binary-3.2.9.dist-info → psycopg_binary-3.2.11.dist-info}/top_level.txt +0 -0
psycopg_binary/__init__.py
CHANGED
|
@@ -4,7 +4,7 @@ psycopg -- PostgreSQL database adapter for Python -- C optimization package
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
# start delvewheel patch
|
|
7
|
-
def
|
|
7
|
+
def _delvewheel_patch_1_11_2():
|
|
8
8
|
import ctypes
|
|
9
9
|
import os
|
|
10
10
|
import platform
|
|
@@ -15,10 +15,10 @@ def _delvewheel_patch_1_10_1():
|
|
|
15
15
|
if os.path.isdir(libs_dir):
|
|
16
16
|
os.add_dll_directory(libs_dir)
|
|
17
17
|
else:
|
|
18
|
-
load_order_filepath = os.path.join(libs_dir, '.load-order-psycopg_binary-3.2.
|
|
18
|
+
load_order_filepath = os.path.join(libs_dir, '.load-order-psycopg_binary-3.2.11')
|
|
19
19
|
if os.path.isfile(load_order_filepath):
|
|
20
20
|
import ctypes.wintypes
|
|
21
|
-
with open(os.path.join(libs_dir, '.load-order-psycopg_binary-3.2.
|
|
21
|
+
with open(os.path.join(libs_dir, '.load-order-psycopg_binary-3.2.11')) as file:
|
|
22
22
|
load_order = file.read().split()
|
|
23
23
|
kernel32 = ctypes.WinDLL('kernel32', use_last_error=True)
|
|
24
24
|
kernel32.LoadLibraryExW.restype = ctypes.wintypes.HMODULE
|
|
@@ -29,8 +29,8 @@ def _delvewheel_patch_1_10_1():
|
|
|
29
29
|
raise OSError('Error loading {}; {}'.format(lib, ctypes.FormatError(ctypes.get_last_error())))
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
del
|
|
32
|
+
_delvewheel_patch_1_11_2()
|
|
33
|
+
del _delvewheel_patch_1_11_2
|
|
34
34
|
# end delvewheel patch
|
|
35
35
|
|
|
36
36
|
# Copyright (C) 2020 The Psycopg Team
|
|
@@ -42,4 +42,4 @@ import sys
|
|
|
42
42
|
if "psycopg" not in sys.modules:
|
|
43
43
|
raise ImportError("the psycopg package should be imported before psycopg_binary")
|
|
44
44
|
|
|
45
|
-
from .version import __version__ as __version__ # noqa
|
|
45
|
+
from .version import __version__ as __version__ # noqa
|
|
Binary file
|
psycopg_binary/_psycopg.pyi
CHANGED
|
@@ -68,11 +68,11 @@ def wait_c(
|
|
|
68
68
|
|
|
69
69
|
# Copy support
|
|
70
70
|
def format_row_text(
|
|
71
|
-
row: Sequence[Any], tx: abc.Transformer, out: bytearray
|
|
72
|
-
) ->
|
|
71
|
+
row: Sequence[Any], tx: abc.Transformer, out: bytearray
|
|
72
|
+
) -> None: ...
|
|
73
73
|
def format_row_binary(
|
|
74
|
-
row: Sequence[Any], tx: abc.Transformer, out: bytearray
|
|
75
|
-
) ->
|
|
74
|
+
row: Sequence[Any], tx: abc.Transformer, out: bytearray
|
|
75
|
+
) -> None: ...
|
|
76
76
|
def parse_row_text(data: abc.Buffer, tx: abc.Transformer) -> tuple[Any, ...]: ...
|
|
77
77
|
def parse_row_binary(data: abc.Buffer, tx: abc.Transformer) -> tuple[Any, ...]: ...
|
|
78
78
|
|
|
Binary file
|
psycopg_binary/version.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"""
|
|
2
|
-
psycopg-
|
|
2
|
+
psycopg-binary distribution version file.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
5
|
# Copyright (C) 2020 The Psycopg Team
|
|
@@ -7,6 +7,6 @@ psycopg-c distribution version file.
|
|
|
7
7
|
from importlib import metadata
|
|
8
8
|
|
|
9
9
|
try:
|
|
10
|
-
__version__ = metadata.version("psycopg-
|
|
10
|
+
__version__ = metadata.version("psycopg-binary")
|
|
11
11
|
except metadata.PackageNotFoundError:
|
|
12
12
|
__version__ = "0.0.0.0"
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
Version: 1.11.2
|
|
2
|
+
Arguments: ['C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-97r6cr3j\\cp39-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-97r6cr3j\\cp39-win_amd64\\repaired_wheel', '--no-mangle', 'libiconv-2.dll;libwinpthread-1.dll', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-97r6cr3j\\cp39-win_amd64\\built_wheel\\psycopg_binary-3.2.11-cp39-cp39-win_amd64.whl']
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: psycopg-binary
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.11
|
|
4
4
|
Summary: PostgreSQL database adapter for Python -- C optimisation distribution
|
|
5
5
|
Home-page: https://psycopg.org/psycopg3/
|
|
6
6
|
Author: Daniele Varrazzo
|
|
7
7
|
Author-email: daniele.varrazzo@gmail.com
|
|
8
|
-
License:
|
|
8
|
+
License-Expression: LGPL-3.0-only
|
|
9
9
|
Project-URL: Homepage, https://psycopg.org/
|
|
10
10
|
Project-URL: Documentation, https://psycopg.org/psycopg3/docs/
|
|
11
11
|
Project-URL: Changes, https://psycopg.org/psycopg3/docs/news.html
|
|
@@ -15,7 +15,6 @@ Project-URL: Download, https://pypi.org/project/psycopg-binary/
|
|
|
15
15
|
Project-URL: Funding, https://github.com/sponsors/dvarrazzo
|
|
16
16
|
Classifier: Development Status :: 5 - Production/Stable
|
|
17
17
|
Classifier: Intended Audience :: Developers
|
|
18
|
-
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
|
|
19
18
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
20
19
|
Classifier: Operating System :: Microsoft :: Windows
|
|
21
20
|
Classifier: Operating System :: POSIX
|
|
@@ -27,6 +26,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
27
26
|
Classifier: Programming Language :: Python :: 3.11
|
|
28
27
|
Classifier: Programming Language :: Python :: 3.12
|
|
29
28
|
Classifier: Programming Language :: Python :: 3.13
|
|
29
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
30
30
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
31
31
|
Classifier: Topic :: Database
|
|
32
32
|
Classifier: Topic :: Database :: Front-Ends
|
|
@@ -36,6 +36,7 @@ Requires-Python: >=3.8
|
|
|
36
36
|
Description-Content-Type: text/x-rst
|
|
37
37
|
License-File: LICENSE.txt
|
|
38
38
|
Dynamic: license-file
|
|
39
|
+
Dynamic: license-expression
|
|
39
40
|
|
|
40
41
|
Psycopg 3: PostgreSQL database adapter for Python - binary package
|
|
41
42
|
==================================================================
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
psycopg_binary/pq.cp39-win_amd64.pyd,sha256=8sHlaM1eKkMZmmyaFldmU6JYlTkFVSw18yQcbF1ce7E,243712
|
|
2
|
+
psycopg_binary/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
psycopg_binary/version.py,sha256=NlEr0mLYE3j2I3iC7xbN60gCQQumNdz4eHnlARwUqkU,258
|
|
4
|
+
psycopg_binary/_psycopg.cp39-win_amd64.pyd,sha256=vQ7capjaO_NXKkWwRn-_xs2S-4SMNTh6Iw1I-qL-olw,577536
|
|
5
|
+
psycopg_binary/_psycopg.pyi,sha256=ATZb-oirwgWwJS8W55-DaSCBKnayFuvFSda7MYIWusI,3278
|
|
6
|
+
psycopg_binary/_uuid.py,sha256=wD9pKUO3E4B67RJ1z7uNup5_UeJdZJqd_EbU4zBOiFs,793
|
|
7
|
+
psycopg_binary/__init__.py,sha256=ZszEdYOdheXbxE46X95CHLulNQFsDPkSQX78TsjtB28,2003
|
|
8
|
+
psycopg_binary-3.2.11.dist-info/DELVEWHEEL,sha256=3F8de79Z-3sEdnHfPvxGyucagYpvq-aOcQ9WzeY_5LQ,456
|
|
9
|
+
psycopg_binary-3.2.11.dist-info/METADATA,sha256=_Nj02otGuJaGgcH1LEDdIby6Z9xnxaay1GcbsFjH2VY,2962
|
|
10
|
+
psycopg_binary-3.2.11.dist-info/RECORD,,
|
|
11
|
+
psycopg_binary-3.2.11.dist-info/top_level.txt,sha256=8OM_PsAa5oKkzVvRu8kDESihBQo_LXqwG_nrlecubIk,15
|
|
12
|
+
psycopg_binary-3.2.11.dist-info/WHEEL,sha256=XkFE14KmFh7mutkkb-qn_ueuH2lwfT8rLdfc5xpQ7wE,99
|
|
13
|
+
psycopg_binary-3.2.11.dist-info/licenses/LICENSE.txt,sha256=fTqV5eBpeAZO0_jit8j4Ref9ikBSlHJ8xwj5TLg7gFk,7817
|
|
14
|
+
psycopg_binary.libs/.load-order-psycopg_binary-3.2.11,sha256=tV0FemB-TPBB3Zel8XAb2IYMeF80BK0vaZlYpsCsjrU,146
|
|
15
|
+
psycopg_binary.libs/libcrypto-3-x64-7260c84db9bb4567f053f710b5c794a0.dll,sha256=cmDITbm7RWfwU_cQtceUoDrFIG5jDkuLAM-F3DBJBd4,5327872
|
|
16
|
+
psycopg_binary.libs/libpq-e22359b42292b4ed846c3fdc76d7fbdc.dll,sha256=1ufOMla9vzQwZidKDRe3MH9YS7Fen0nK4qq-fKZLWis,305664
|
|
17
|
+
psycopg_binary.libs/libssl-3-x64-b3d6391b1e6176587669f6a8f50df00f.dll,sha256=CNAEvaaUg_ElRUZY5W81GmHyGJUENntMto42tkq5qSU,871424
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
Version: 1.10.1
|
|
2
|
-
Arguments: ['C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-8tozs4fm\\cp39-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-8tozs4fm\\cp39-win_amd64\\repaired_wheel', '--no-mangle', 'libiconv-2.dll;libwinpthread-1.dll', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-8tozs4fm\\cp39-win_amd64\\built_wheel\\psycopg_binary-3.2.9-cp39-cp39-win_amd64.whl']
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
psycopg_binary/pq.cp39-win_amd64.pyd,sha256=ADKTfOdhCX6viMkbe7x2odSge_JcnBugaqTEqsDincE,288256
|
|
2
|
-
psycopg_binary/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
psycopg_binary/version.py,sha256=K_wT8GlZNR5_XxaeCzavlI4pZhs90InDwJ3tnoT25jE,248
|
|
4
|
-
psycopg_binary/_psycopg.cp39-win_amd64.pyd,sha256=zkBJX3qSOweyEebCTvI3fDeVoeKq3hF_7G_Eiusc31U,689664
|
|
5
|
-
psycopg_binary/_psycopg.pyi,sha256=ozRoOASe0mAVo_gk439r2lc-Bwx3a8vFoJjjNteTd_M,3316
|
|
6
|
-
psycopg_binary/_uuid.py,sha256=wD9pKUO3E4B67RJ1z7uNup5_UeJdZJqd_EbU4zBOiFs,793
|
|
7
|
-
psycopg_binary/__init__.py,sha256=xLpcmhtYyxkWurKvRaRlL3wHdosYiW8FvITP_QzYR7I,1999
|
|
8
|
-
psycopg_binary-3.2.9.dist-info/DELVEWHEEL,sha256=DxcO4CvxKnsoClMuijbg68XvknYo_pi9MrWsF8CCLoI,455
|
|
9
|
-
psycopg_binary-3.2.9.dist-info/METADATA,sha256=IZVg3zLrecwCXgvvYq9tJMm-4BZsHBf9reR7pt3I3gQ,2987
|
|
10
|
-
psycopg_binary-3.2.9.dist-info/RECORD,,
|
|
11
|
-
psycopg_binary-3.2.9.dist-info/top_level.txt,sha256=8OM_PsAa5oKkzVvRu8kDESihBQo_LXqwG_nrlecubIk,15
|
|
12
|
-
psycopg_binary-3.2.9.dist-info/WHEEL,sha256=RXjBKdSUIP0YC6JPJG7bc0sl_UrYP7JdTYfEui8v8Eo,99
|
|
13
|
-
psycopg_binary-3.2.9.dist-info/licenses/LICENSE.txt,sha256=fTqV5eBpeAZO0_jit8j4Ref9ikBSlHJ8xwj5TLg7gFk,7817
|
|
14
|
-
psycopg_binary.libs/.load-order-psycopg_binary-3.2.9,sha256=nlbcua5cceZtk6up4as5VsDiEGDxnJ9WII689TbBJWY,146
|
|
15
|
-
psycopg_binary.libs/libcrypto-3-x64-d0e70c80d540c0b3b33d7e90a4c21953.dll,sha256=nIFW6UPKufJKftJjegwNsHkERde4VWYe9X8OKBT5Bvs,5244928
|
|
16
|
-
psycopg_binary.libs/libpq-1d16f3083bac70e1aa4e00572bae0503.dll,sha256=7if5yN3zMuXWIZfHnrkY-H_dY_UsnaqZYJKkXsbki6k,307712
|
|
17
|
-
psycopg_binary.libs/libssl-3-x64-cf9f368bee0001756e3ba14230e66396.dll,sha256=1Od8hlbptq-9P9tTxWaLEEbxxFr1r12Vkn7RLeWT2Ag,865280
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|