pyogrio 0.7.0__cp38-cp38-win_amd64.whl → 0.7.2__cp38-cp38-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 pyogrio might be problematic. Click here for more details.
- pyogrio/__init__.py +2 -2
- pyogrio/_compat.py +1 -0
- pyogrio/_err.cp38-win_amd64.pyd +0 -0
- pyogrio/_geometry.cp38-win_amd64.pyd +0 -0
- pyogrio/_io.c +117 -117
- pyogrio/_io.cp38-win_amd64.pyd +0 -0
- pyogrio/_ogr.cp38-win_amd64.pyd +0 -0
- pyogrio/_version.py +3 -3
- pyogrio/geopandas.py +6 -2
- pyogrio/tests/test_geopandas_io.py +24 -0
- pyogrio/util.py +2 -1
- pyogrio-0.7.2.dist-info/DELVEWHEEL +2 -0
- {pyogrio-0.7.0.dist-info → pyogrio-0.7.2.dist-info}/METADATA +2 -1
- {pyogrio-0.7.0.dist-info → pyogrio-0.7.2.dist-info}/RECORD +24 -24
- {pyogrio-0.7.0.dist-info → pyogrio-0.7.2.dist-info}/WHEEL +1 -1
- pyogrio.libs/{.load-order-pyogrio-0.7.0 → .load-order-pyogrio-0.7.2} +13 -13
- pyogrio.libs/Lerc-d5afc4101deffe7de21241ccd4d562f6.dll +0 -0
- pyogrio.libs/gdal-c3b1d8f66682071d0cd26d86e4182013.dll +0 -0
- pyogrio.libs/geos-1c764a1384537a0ad2995e83d23e8642.dll +0 -0
- pyogrio.libs/geos_c-0d7dfdcee49efa8df585e2fb993157aa.dll +0 -0
- pyogrio.libs/{msvcp140-684a9cbd9fb753a8ca82ae2915206b1d.dll → msvcp140-83b6a1a2fa8b1735a358b2fe13cabe4e.dll} +0 -0
- pyogrio.libs/proj-98758c96a6cb682b5cec7e8dc5e29a50.dll +0 -0
- pyogrio-0.7.0.dist-info/DELVEWHEEL +0 -2
- {pyogrio-0.7.0.dist-info → pyogrio-0.7.2.dist-info}/LICENSE +0 -0
- {pyogrio-0.7.0.dist-info → pyogrio-0.7.2.dist-info}/top_level.txt +0 -0
pyogrio/_io.cp38-win_amd64.pyd
CHANGED
|
Binary file
|
pyogrio/_ogr.cp38-win_amd64.pyd
CHANGED
|
Binary file
|
pyogrio/_version.py
CHANGED
|
@@ -8,11 +8,11 @@ import json
|
|
|
8
8
|
|
|
9
9
|
version_json = '''
|
|
10
10
|
{
|
|
11
|
-
"date": "2023-10-
|
|
11
|
+
"date": "2023-10-30T11:39:03-0700",
|
|
12
12
|
"dirty": false,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "0.7.
|
|
14
|
+
"full-revisionid": "71acde57ef674c8622d17b29663ff4349b1fee6e",
|
|
15
|
+
"version": "0.7.2"
|
|
16
16
|
}
|
|
17
17
|
''' # END VERSION_JSON
|
|
18
18
|
|
pyogrio/geopandas.py
CHANGED
|
@@ -2,7 +2,7 @@ import os
|
|
|
2
2
|
|
|
3
3
|
import numpy as np
|
|
4
4
|
|
|
5
|
-
from pyogrio._compat import HAS_GEOPANDAS, PANDAS_GE_20
|
|
5
|
+
from pyogrio._compat import HAS_GEOPANDAS, PANDAS_GE_15, PANDAS_GE_20
|
|
6
6
|
from pyogrio.raw import (
|
|
7
7
|
DRIVERS_NO_MIXED_SINGLE_MULTI,
|
|
8
8
|
DRIVERS_NO_MIXED_DIMENSIONS,
|
|
@@ -275,7 +275,11 @@ def read_dataframe(
|
|
|
275
275
|
# Index not asked, no geometry column and no attribute columns: return empty
|
|
276
276
|
return pd.DataFrame()
|
|
277
277
|
elif geometry_name in df.columns:
|
|
278
|
-
|
|
278
|
+
wkb_values = df.pop(geometry_name)
|
|
279
|
+
if PANDAS_GE_15 and wkb_values.dtype != object:
|
|
280
|
+
# for example ArrowDtype will otherwise create numpy array with pd.NA
|
|
281
|
+
wkb_values = wkb_values.to_numpy(na_value=None)
|
|
282
|
+
df["geometry"] = from_wkb(wkb_values, crs=meta["crs"])
|
|
279
283
|
if force_2d:
|
|
280
284
|
df["geometry"] = shapely.force_2d(df["geometry"])
|
|
281
285
|
return gp.GeoDataFrame(df, geometry="geometry")
|
|
@@ -17,6 +17,7 @@ from pyogrio.tests.conftest import (
|
|
|
17
17
|
requires_arrow_api,
|
|
18
18
|
requires_gdal_geos,
|
|
19
19
|
)
|
|
20
|
+
from pyogrio._compat import PANDAS_GE_15
|
|
20
21
|
|
|
21
22
|
try:
|
|
22
23
|
import pandas as pd
|
|
@@ -1442,3 +1443,26 @@ def test_metadata_unsupported(tmpdir, naturalearth_lowres, metadata_type):
|
|
|
1442
1443
|
metadata_key = "layer_metadata" if metadata_type == "metadata" else metadata_type
|
|
1443
1444
|
|
|
1444
1445
|
assert read_info(filename)[metadata_key] is None
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
@pytest.mark.skipif(not PANDAS_GE_15, reason="ArrowDtype requires pandas 1.5+")
|
|
1449
|
+
def test_read_dataframe_arrow_dtypes(tmp_path):
|
|
1450
|
+
# https://github.com/geopandas/pyogrio/issues/319 - ensure arrow binary
|
|
1451
|
+
# column can be converted with from_wkb in case of missing values
|
|
1452
|
+
pytest.importorskip("pyarrow")
|
|
1453
|
+
filename = tmp_path / "test.gpkg"
|
|
1454
|
+
df = gp.GeoDataFrame(
|
|
1455
|
+
{"col": [1.0, 2.0]}, geometry=[Point(1, 1), None], crs="EPSG:4326"
|
|
1456
|
+
)
|
|
1457
|
+
write_dataframe(df, filename)
|
|
1458
|
+
|
|
1459
|
+
result = read_dataframe(
|
|
1460
|
+
filename,
|
|
1461
|
+
use_arrow=True,
|
|
1462
|
+
arrow_to_pandas_kwargs={
|
|
1463
|
+
"types_mapper": lambda pa_dtype: pd.ArrowDtype(pa_dtype)
|
|
1464
|
+
},
|
|
1465
|
+
)
|
|
1466
|
+
assert isinstance(result["col"].dtype, pd.ArrowDtype)
|
|
1467
|
+
result["col"] = result["col"].astype("float64")
|
|
1468
|
+
assert_geodataframe_equal(result, df)
|
pyogrio/util.py
CHANGED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
Version: 1.5.1
|
|
2
|
+
Arguments: ['C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-4zvxj8ir\\cp38-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '--add-path', 'C:/vcpkg/installed/x64-windows-dynamic-release/bin', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-4zvxj8ir\\cp38-win_amd64\\repaired_wheel', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-4zvxj8ir\\cp38-win_amd64\\built_wheel\\pyogrio-0.7.2-cp38-cp38-win_amd64.whl']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyogrio
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.2
|
|
4
4
|
Summary: Vectorized spatial vector file format I/O using GDAL/OGR
|
|
5
5
|
Home-page: https://github.com/geopandas/pyogrio
|
|
6
6
|
Author: Brendan C. Ward
|
|
@@ -11,6 +11,7 @@ Description-Content-Type: text/markdown
|
|
|
11
11
|
License-File: LICENSE
|
|
12
12
|
Requires-Dist: certifi
|
|
13
13
|
Requires-Dist: numpy
|
|
14
|
+
Requires-Dist: packaging
|
|
14
15
|
Provides-Extra: benchmark
|
|
15
16
|
Requires-Dist: pytest-benchmark ; extra == 'benchmark'
|
|
16
17
|
Provides-Extra: dev
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
pyogrio/arrow_bridge.h,sha256=EfWAiMO2rssy2SA5sMiApGWvmIFp_1YQA1Q3D9wCy6w,3688
|
|
2
2
|
pyogrio/core.py,sha256=gqpACOruAauWqc5ziz8aWxU-oyvdUSfmT5yNutlX7rk,11001
|
|
3
3
|
pyogrio/errors.py,sha256=EUpf5UaLuzB6mybXfZ21F-2AfC9GWPYTGjRST6AIPEM,698
|
|
4
|
-
pyogrio/geopandas.py,sha256=
|
|
4
|
+
pyogrio/geopandas.py,sha256=pzHrzZAIToRCbQhMvoS6Tcn5beBUMJF8PJ20EtF597Y,24415
|
|
5
5
|
pyogrio/raw.py,sha256=c0hcxxLNjdl1LCV-9OcmGCaLm06-8J3RyOZV8XS_U-g,19108
|
|
6
|
-
pyogrio/util.py,sha256=
|
|
7
|
-
pyogrio/_compat.py,sha256=
|
|
6
|
+
pyogrio/util.py,sha256=ajIYzeZSNmwLk_auwIZGq2zbhgBUh4cn6xythhRWiuY,5136
|
|
7
|
+
pyogrio/_compat.py,sha256=mRTmqgoAa3FwqZnnrqVslPD_quMwC3d3K-xOr5bhiy4,852
|
|
8
8
|
pyogrio/_env.py,sha256=Sl9xkpcMi-b2jxR0L8rMFKW15eESFb1HBEIxzQvXX_E,1592
|
|
9
9
|
pyogrio/_err.c,sha256=5sEthM6DG7Ge1QKNkbVsGUWu-EsehRh8ISVUa7IAAOk,433292
|
|
10
|
-
pyogrio/_err.cp38-win_amd64.pyd,sha256=
|
|
10
|
+
pyogrio/_err.cp38-win_amd64.pyd,sha256=ABWIblfN5-Dii5wF7Xi7yKnYFaRWqzTzm_uAZ-EWM10,74752
|
|
11
11
|
pyogrio/_err.pxd,sha256=Qxp418g6T9MPmpUZJR9rhr31NZwI4pu-9hFH7aaj59w,170
|
|
12
12
|
pyogrio/_err.pyx,sha256=1ftE4lFtf2ouigZz-RJHjyYZaq3akpcjvxH9I10VsLo,6223
|
|
13
13
|
pyogrio/_geometry.c,sha256=tDmK6Hitw6kgZDFwisjTkX3WR3Yk32ZMygHW3CpUBSs,331842
|
|
14
|
-
pyogrio/_geometry.cp38-win_amd64.pyd,sha256=
|
|
14
|
+
pyogrio/_geometry.cp38-win_amd64.pyd,sha256=tA3PlHHxbLaqivK5IaSQzUuX1DHlDtkBSL8Mwqy5JEU,51712
|
|
15
15
|
pyogrio/_geometry.pxd,sha256=mm6aPgDYvlDI79K0leMtDBGTqaRdlBH8pzg2v2zRqvs,150
|
|
16
16
|
pyogrio/_geometry.pyx,sha256=l42NiTzO5INk8pOO8xDCpHdxfO8XO9WicRo5CIzh08I,4199
|
|
17
|
-
pyogrio/_io.c,sha256=
|
|
18
|
-
pyogrio/_io.cp38-win_amd64.pyd,sha256=
|
|
17
|
+
pyogrio/_io.c,sha256=a2VmOYSJWykAHq3xRMU_oq2VDPyLQ_2jc-jepO-GfnU,2472902
|
|
18
|
+
pyogrio/_io.cp38-win_amd64.pyd,sha256=KQmTPus7yWa8YBwMA38YmoWV0TN0dkImOmuPzVx_YQI,396800
|
|
19
19
|
pyogrio/_io.pxd,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
pyogrio/_io.pyx,sha256=wP8XrEoxuEohJRRKQpKixt41VZhSkognsRsD0KGMwPA,69102
|
|
21
21
|
pyogrio/_ogr.c,sha256=PrIY1s5DyckvC247UVk-wRLOr5Gwin1UCxjrjRyOI2E,599636
|
|
22
|
-
pyogrio/_ogr.cp38-win_amd64.pyd,sha256=
|
|
22
|
+
pyogrio/_ogr.cp38-win_amd64.pyd,sha256=XD4ysrPtMHJfmIQZK0bWOEwgsHmnGU3pHrRVFMZ0zIs,101888
|
|
23
23
|
pyogrio/_ogr.pxd,sha256=OxXpjW4hXt8n50jP_yiGNoDt1y04aa8LOtE6ZFhTwQY,15683
|
|
24
24
|
pyogrio/_ogr.pyx,sha256=rUuTMK_PZxDlNKdM500EqVc5QbtCFUx3Oq8U5_B-_U4,10657
|
|
25
|
-
pyogrio/_version.py,sha256=
|
|
26
|
-
pyogrio/__init__.py,sha256
|
|
25
|
+
pyogrio/_version.py,sha256=ul2yqzdHOdtcjK_i0mWwPtAeeeHfKcYJ2F1Z1aAlcRk,518
|
|
26
|
+
pyogrio/__init__.py,sha256=pizhr0yNgZAC1zompKCKkT9C0BNwYIBCuEVhJm6tplg,2357
|
|
27
27
|
pyogrio/gdal_data/bag_template.xml,sha256=2veBb2hsNbUexmyQ_GrtvxLb75fyj5-ulzE5L5KvtzM,9020
|
|
28
28
|
pyogrio/gdal_data/copyright,sha256=Ha40aOgdANpW4pNvdNM7izrQnXJkN_Gc4gml2r6kH3c,21841
|
|
29
29
|
pyogrio/gdal_data/cubewerx_extra.wkt,sha256=HMo_o-JJ9Mx9G_D_sKcaGir63RCv337QqiktvF5PB2g,11977
|
|
@@ -213,7 +213,7 @@ pyogrio/proj_data/world,sha256=8nHNPlbHdZ0vz7u9OYcCZOuBBkFVcTwE_JLq3TCt60g,7079
|
|
|
213
213
|
pyogrio/tests/conftest.py,sha256=XH91Uo-XDhiIj5TO92yPBLxqB4CtgyDdrh-jjN2d-Pc,3945
|
|
214
214
|
pyogrio/tests/test_arrow.py,sha256=jDeD3EnXc3lA-jTLaQ18xc55Z23eb8qNpiheehbm4lE,7154
|
|
215
215
|
pyogrio/tests/test_core.py,sha256=4-AjVV6-Jmx4NGAsDtdmx9yQLVTy2spPbJoEl78ingM,16664
|
|
216
|
-
pyogrio/tests/test_geopandas_io.py,sha256=
|
|
216
|
+
pyogrio/tests/test_geopandas_io.py,sha256=R7ZtGbw5lxVXLMixMeXiO8V0OFpWrwenXEYO_X4Eb-g,52373
|
|
217
217
|
pyogrio/tests/test_path.py,sha256=LXAx98tnkQaUFtzCs62AjksPGstHlr69Xugq2A7BiGQ,11116
|
|
218
218
|
pyogrio/tests/test_raw_io.py,sha256=LIqk5gR-U62P7oox3xEOkYdZeGN0WC56CTtmEH66of8,40461
|
|
219
219
|
pyogrio/tests/win32.py,sha256=d_lpa-anO_TvND2hXOucuhFmrGJf07NN3eEZxvroqKA,2184
|
|
@@ -232,26 +232,26 @@ pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.dbf,sha256=0q4cma
|
|
|
232
232
|
pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.prj,sha256=mKrz0cDsrfGkJKRTbeJhw9r043NpfLhsQMQ7mJ2vUus,143
|
|
233
233
|
pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.shp,sha256=CONBYG6DkeRYw_CN6zEt5mS1a_rjdgZMWqCu5mgaX1U,180924
|
|
234
234
|
pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.shx,sha256=iwvirZfdSEruXC68mGl9U3LoMriuWKNaZhru9rmFZo0,1516
|
|
235
|
-
pyogrio-0.7.
|
|
236
|
-
pyogrio-0.7.
|
|
237
|
-
pyogrio-0.7.
|
|
238
|
-
pyogrio-0.7.
|
|
239
|
-
pyogrio-0.7.
|
|
240
|
-
pyogrio-0.7.
|
|
241
|
-
pyogrio.libs/.load-order-pyogrio-0.7.
|
|
242
|
-
pyogrio.libs/gdal-c3b1d8f66682071d0cd26d86e4182013.dll,sha256=
|
|
243
|
-
pyogrio.libs/geos-1c764a1384537a0ad2995e83d23e8642.dll,sha256=
|
|
244
|
-
pyogrio.libs/geos_c-0d7dfdcee49efa8df585e2fb993157aa.dll,sha256=
|
|
235
|
+
pyogrio-0.7.2.dist-info/DELVEWHEEL,sha256=kwSSSDWsPNMiPgtyBKNzZ8InTawzfPMAMv5J6lgNOMc,462
|
|
236
|
+
pyogrio-0.7.2.dist-info/LICENSE,sha256=Ct2aqKxglcGNtFadzH5GIuZMeCMkr_mE8_YzJ_b4O80,1123
|
|
237
|
+
pyogrio-0.7.2.dist-info/METADATA,sha256=3ChIITUDVFNm9dZFRZ3bKh1J1-nR41XQCVnxjiQ_HCI,3907
|
|
238
|
+
pyogrio-0.7.2.dist-info/RECORD,,
|
|
239
|
+
pyogrio-0.7.2.dist-info/top_level.txt,sha256=DUBAVaLxa9r0nHHskG8tHdP1P3zt6TYYPRiDBlEUc7Y,8
|
|
240
|
+
pyogrio-0.7.2.dist-info/WHEEL,sha256=F0Sy4cJpUFRte6B8tVdzEjn2lJG_nQtLehByM-2DED0,100
|
|
241
|
+
pyogrio.libs/.load-order-pyogrio-0.7.2,sha256=_RPa0Fddc5oL_Iq1Orj_DLLFjOWYhQStOqF6UZTIYXM,800
|
|
242
|
+
pyogrio.libs/gdal-c3b1d8f66682071d0cd26d86e4182013.dll,sha256=gLTJEzdsvl2DJauebIisadkWLilfD8a8CgHWQcbCuYE,16030208
|
|
243
|
+
pyogrio.libs/geos-1c764a1384537a0ad2995e83d23e8642.dll,sha256=gMVQV-hmB-GFZcQXXwPwntQ1dxyhyNveeTnER0n9x0I,1993216
|
|
244
|
+
pyogrio.libs/geos_c-0d7dfdcee49efa8df585e2fb993157aa.dll,sha256=5wTk5Stmdwrzw7s1Nufv8MR5b04HW-kcwN-MIj9vf1Q,381952
|
|
245
245
|
pyogrio.libs/geotiff-e43cdab688866b59f8800cfcde836d16.dll,sha256=46J-Tq8kOBbpXV8LKbmO8lUPXu5vxX8g2BHjj3EqGcU,160256
|
|
246
246
|
pyogrio.libs/jpeg62-567ab743ac805dfb57fe3867ba5788a4.dll,sha256=v-JGxEwITskPuVHosL7rE0jH15D_fXw745iLql9P7Zw,802816
|
|
247
247
|
pyogrio.libs/json-c-36c91e30c4410d41c22b2010c31183e3.dll,sha256=eJ20k0J4Xo2C5fyl0c_hsWpBXA4Tz4pJZ3tavWzYiUw,53760
|
|
248
|
-
pyogrio.libs/Lerc-d5afc4101deffe7de21241ccd4d562f6.dll,sha256=
|
|
248
|
+
pyogrio.libs/Lerc-d5afc4101deffe7de21241ccd4d562f6.dll,sha256=mLV3T8vX6cQej65HxNxmUXyRMrzX10LS92y5bJ40byQ,519680
|
|
249
249
|
pyogrio.libs/libcurl-ebcc8c18195071a90e59f818902e10c6.dll,sha256=guHQprUshi1cB1iRSgh9noULedmy39pB8T1V2yoiiWs,516608
|
|
250
250
|
pyogrio.libs/libexpat-345379c9c11632130d8c383cbacde1a6.dll,sha256=xFGGGRMN6z2HjV8pdeLkMI-qXySfRTSSlBa2Q_Tif8Y,154112
|
|
251
251
|
pyogrio.libs/liblzma-de7f4770d4e3715acd031ca93883f10c.dll,sha256=GKkbbQU4R4QaI_74vB120Yjx6ZMkRmKl4X2fvcWpQX8,185344
|
|
252
252
|
pyogrio.libs/libpng16-2c30e6846653c47ef2ff9d7dec3338ba.dll,sha256=472dJ9AaiKCAaF9NWQ5vh6gvtgi7XicK-schH-VOMDo,195584
|
|
253
|
-
pyogrio.libs/msvcp140-
|
|
254
|
-
pyogrio.libs/proj-98758c96a6cb682b5cec7e8dc5e29a50.dll,sha256=
|
|
253
|
+
pyogrio.libs/msvcp140-83b6a1a2fa8b1735a358b2fe13cabe4e.dll,sha256=BSsZeLCOIhn6U-ay9YhGpjFQvPACvTblS2vBBkRoRII,621960
|
|
254
|
+
pyogrio.libs/proj-98758c96a6cb682b5cec7e8dc5e29a50.dll,sha256=bxjG7Mjs0O4FGTTfhsE94kful8iHy_zPcQlrM7VGoTY,3332608
|
|
255
255
|
pyogrio.libs/qhull_r-99ae8a526357acc44b162cb4df2c3bb6.dll,sha256=L8E8J_jBqkBnWWNtJA4J5ZL2zhL9wZNs2ljojCOK43Q,448512
|
|
256
256
|
pyogrio.libs/sqlite3-327ed7b38bfd91fb4a17544960e055e9.dll,sha256=V4lGcw9ea2JYpxWJMnHqqDWEVIcsEWeYgRDQdhXW8t4,1084928
|
|
257
257
|
pyogrio.libs/tiff-7c2d4b204ec2db46c81f6a597895c2f7.dll,sha256=aT8q1wBKPYM2z5nt1NUrxxyeJTQT0eo_kS2d-y3YePo,459264
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
json-c-36c91e30c4410d41c22b2010c31183e3.dll
|
|
2
|
-
libpng16-2c30e6846653c47ef2ff9d7dec3338ba.dll
|
|
3
|
-
geos_c-0d7dfdcee49efa8df585e2fb993157aa.dll
|
|
4
|
-
libcurl-ebcc8c18195071a90e59f818902e10c6.dll
|
|
5
|
-
sqlite3-327ed7b38bfd91fb4a17544960e055e9.dll
|
|
6
|
-
libexpat-345379c9c11632130d8c383cbacde1a6.dll
|
|
7
|
-
msvcp140-684a9cbd9fb753a8ca82ae2915206b1d.dll
|
|
8
1
|
liblzma-de7f4770d4e3715acd031ca93883f10c.dll
|
|
9
|
-
|
|
2
|
+
libpng16-2c30e6846653c47ef2ff9d7dec3338ba.dll
|
|
3
|
+
qhull_r-99ae8a526357acc44b162cb4df2c3bb6.dll
|
|
10
4
|
tiff-7c2d4b204ec2db46c81f6a597895c2f7.dll
|
|
11
|
-
Lerc-d5afc4101deffe7de21241ccd4d562f6.dll
|
|
12
|
-
vcruntime140_1-d1a1506707e0c0a26950a60c5f97ad99.dll
|
|
13
5
|
gdal-c3b1d8f66682071d0cd26d86e4182013.dll
|
|
14
|
-
|
|
6
|
+
vcruntime140_1-d1a1506707e0c0a26950a60c5f97ad99.dll
|
|
7
|
+
zlib1-824de9299616f0908aeeb9441a084848.dll
|
|
15
8
|
proj-98758c96a6cb682b5cec7e8dc5e29a50.dll
|
|
9
|
+
Lerc-d5afc4101deffe7de21241ccd4d562f6.dll
|
|
10
|
+
libexpat-345379c9c11632130d8c383cbacde1a6.dll
|
|
11
|
+
libcurl-ebcc8c18195071a90e59f818902e10c6.dll
|
|
12
|
+
msvcp140-83b6a1a2fa8b1735a358b2fe13cabe4e.dll
|
|
13
|
+
geos-1c764a1384537a0ad2995e83d23e8642.dll
|
|
14
|
+
jpeg62-567ab743ac805dfb57fe3867ba5788a4.dll
|
|
15
|
+
json-c-36c91e30c4410d41c22b2010c31183e3.dll
|
|
16
16
|
geotiff-e43cdab688866b59f8800cfcde836d16.dll
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
sqlite3-327ed7b38bfd91fb4a17544960e055e9.dll
|
|
18
|
+
geos_c-0d7dfdcee49efa8df585e2fb993157aa.dll
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
Version: 1.5.1
|
|
2
|
-
Arguments: ['C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-sq3ulsg0\\cp38-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '--add-path', 'C:/vcpkg/installed/x64-windows-dynamic-release/bin', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-sq3ulsg0\\cp38-win_amd64\\repaired_wheel', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-sq3ulsg0\\cp38-win_amd64\\built_wheel\\pyogrio-0.7.0-cp38-cp38-win_amd64.whl']
|
|
File without changes
|
|
File without changes
|