You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "djouallah (via GitHub)" <gi...@apache.org> on 2023/03/21 22:30:55 UTC

[GitHub] [arrow-datafusion-python] djouallah opened a new issue, #297: installing 20.0.0 is broken

djouallah opened a new issue, #297:
URL: https://github.com/apache/arrow-datafusion-python/issues/297

   I can't install from google colab
   
   ```
   Collecting datafusion
     Downloading datafusion-20.0.0.tar.gz (12.8 MB)
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.8/12.8 MB 46.7 MB/s eta 0:00:00
     Installing build dependencies ... done
     Getting requirements to build wheel ... done
     error: subprocess-exited-with-error
     
     × Preparing metadata (pyproject.toml) did not run successfully.
     │ exit code: 1
     ╰─> See above for output.
     
     note: This error originates from a subprocess, and is likely not a problem with pip.
     Preparing metadata (pyproject.toml) ... error
   error: metadata-generation-failed
   
   × Encountered error while generating package metadata.
   ╰─> See above for output.
   
   note: This is an issue with the package mentioned above, not pip.
   hint: See above for details.
   Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion-python] andygrove commented on issue #297: installing 20.0.0 is broken

Posted by "andygrove (via GitHub)" <gi...@apache.org>.
andygrove commented on issue #297:
URL: https://github.com/apache/arrow-datafusion-python/issues/297#issuecomment-1498369115

   @djouallah Could you please let me know if this is resolved in version 21 - all wheels were just published


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion-python] djouallah commented on issue #297: installing 20.0.0 is broken

Posted by "djouallah (via GitHub)" <gi...@apache.org>.
djouallah commented on issue #297:
URL: https://github.com/apache/arrow-datafusion-python/issues/297#issuecomment-1498371537

   @andygrove 
   
   Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
   Collecting datafusion
     Downloading datafusion-21.0.0.tar.gz (95 kB)
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 95.9/95.9 KB 3.5 MB/s eta 0:00:00
     Installing build dependencies ... done
     Getting requirements to build wheel ... done
     error: subprocess-exited-with-error
     
     × Preparing metadata (pyproject.toml) did not run successfully.
     │ exit code: 1
     ╰─> See above for output.
     
     note: This error originates from a subprocess, and is likely not a problem with pip.
     Preparing metadata (pyproject.toml) ... error
   error: metadata-generation-failed
   
   × Encountered error while generating package metadata.
   ╰─> See above for output.
   
   note: This is an issue with the package mentioned above, not pip.
   hint: See above for details.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion-python] djouallah commented on issue #297: installing 20.0.0 is broken

Posted by "djouallah (via GitHub)" <gi...@apache.org>.
djouallah commented on issue #297:
URL: https://github.com/apache/arrow-datafusion-python/issues/297#issuecomment-1504374108

   @andygrove still same errors
   
   Looking in indexes: https://test.pypi.org/simple/, https://us-python.pkg.dev/colab-wheels/public/simple/
   Collecting datafusion==22.0.0
     Downloading https://test-files.pythonhosted.org/packages/df/d7/f2d4e3618b33330f5f9878fef1b3845f321f3a9f40207d850cfdc5c2936c/datafusion-22.0.0.tar.gz (93 kB)
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 93.1/93.1 kB 2.1 MB/s eta 0:00:00
     error: subprocess-exited-with-error
     
     × pip subprocess to install build dependencies did not run successfully.
     │ exit code: 1
     ╰─> See above for output.
     
     note: This error originates from a subprocess, and is likely not a problem with pip.
     Installing build dependencies ... error
   error: subprocess-exited-with-error
   
   × pip subprocess to install build dependencies did not run successfully.
   │ exit code: 1
   ╰─> See above for output.
   
   note: This error originates from a subprocess, and is likely not a problem with pip.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion-python] andygrove commented on issue #297: installing 20.0.0 is broken

Posted by "andygrove (via GitHub)" <gi...@apache.org>.
andygrove commented on issue #297:
URL: https://github.com/apache/arrow-datafusion-python/issues/297#issuecomment-1503367091

   @djouallah The build issues are now resolved, as of DF 22, which is available on testpypi:
   
   
   ```shell
   python3 -m pip install --index-url https://test.pypi.org/simple/ datafusion==22.0.0
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion-python] andygrove closed issue #297: installing 20.0.0 is broken

Posted by "andygrove (via GitHub)" <gi...@apache.org>.
andygrove closed issue #297: installing 20.0.0 is broken 
URL: https://github.com/apache/arrow-datafusion-python/issues/297


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion-python] djouallah commented on issue #297: installing 20.0.0 is broken

Posted by "djouallah (via GitHub)" <gi...@apache.org>.
djouallah commented on issue #297:
URL: https://github.com/apache/arrow-datafusion-python/issues/297#issuecomment-1505758241

   I can confirm it is working in Windows, no colab yet


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org