Hello, I see the latest 0.9.0 version of pyarrow is 0.9.0.post1 https://pypi.org/project/pyarrow/0.9.0.post1/#files but I can't convince pip to install it. Do you have any clue on what might be going wrong?
> pip --version pip 9.0.3 from /usr/lib/python2.7/site-packages (python 2.7) > pip install --no-cache-dir --upgrade pyarrow==0.9.0.post1 Collecting pyarrow==0.9.0.post1 Could not find a version that satisfies the requirement pyarrow==0.9.0.post1 (from versions: 0.2.0, 0.3.0, 0.4.0, 0.4.1, 0.5.0.post2, 0.6.0, 0.7.0, 0.7.1, 0.8.0, 0.9.0, 0.10.0) No matching distribution found for pyarrow==0.9.0.post1 > pip3 --version pip 9.0.3 from /usr/lib/python3.6/site-packages (python 3.6) > pip3 install --no-cache-dir --upgrade pyarrow==0.9.0.post1 Collecting pyarrow==0.9.0.post1 Could not find a version that satisfies the requirement pyarrow==0.9.0.post1 (from versions: 0.2.0, 0.3.0, 0.4.0, 0.4.1, 0.5.0.post2, 0.6.0, 0.7.0, 0.7.1, 0.8.0, 0.9.0, 0.10.0) No matching distribution found for pyarrow==0.9.0.post1 Is it because 0.9.0 shadows 0.9.0.post1? Thanks! Rares