Changes between Initial Version and Version 1 of Ticket #860, comment 2
- Timestamp:
- 12/07/24 08:10:18 (8 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #860, comment 2
initial v1 1 1 The issue is due to the fact that, in python3-pyarrow 0.0.0-1, {{{pyarrow.__version__ = None}}}, which in turn is due to the fact that the "_generated_version" module is missing. 2 2 3 A simple workaround, which also makes both geopandas and pandas work well when python3-pyarrow 0.0.0-1 is installed, is to change line 59 in {{{apps\Python312\Lib\site-packages\pyarrow\__init__.py}}} from {{{ pyarrow.__version__ = None}}} to {{{pyarrow.__version__ = '17.0.0'}}}.3 A simple workaround, which also makes both geopandas and pandas work well when python3-pyarrow 0.0.0-1 is installed, is to change line 59 in {{{apps\Python312\Lib\site-packages\pyarrow\__init__.py}}} from {{{__version__ = None}}} to {{{__version__ = '17.0.0'}}}.