I verified the signatures and tried installing the dev wheel on mac OS
x86_64 and running some examples

It worked great!

Thanks for doing this Andy

pip install -i https://test.pypi.org/simple/ datafusion==0.7.0

...

Python 3.10.8 (main, Nov 15 2022, 05:25:54) [Clang 14.0.0
(clang-1400.0.29.202)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import datafusion
>>> from datafusion import col
>>> import pyarrow
>>>
>>> # create a context
>>> ctx = datafusion.SessionContext()
>>> df = ctx.read_parquet('/Users/alamb/Downloads/cpu.parquet')
>>> df.limit(10).show()
+-----------+-----------------------------------+---------------------+-------------+------------------+---------------------+--------------+-----------+------------+---------------+-------------+--------------------+-------------------+
| cpu       | host                              | time                |
usage_guest | usage_guest_nice | usage_idle          | usage_iowait |
usage_irq | usage_nice | usage_softirq | usage_steal | usage_system       |
usage_user        |
+-----------+-----------------------------------+---------------------+-------------+------------------+---------------------+--------------+-----------+------------+---------------+-------------+--------------------+-------------------+
| cpu-total | MacBook-Pro-8.hsd1.ma.comcast.net | 2022-09-30T12:45:50 | 0
        | 0                | 88.22131916285875   | 0            | 0
| 0          | 0             | 0           | 7.92122538297707   |
3.857455454801022 |
| cpu-total | MacBook-Pro-8.hsd1.ma.comcast.net | 2022-09-30T12:46:00 | 0
        | 0                | 32.20033554948997   | 0            | 0
| 0          | 0             | 0           | 16.199589883629166 |
51.60007456610322 |
| cpu-total | MacBook-Pro-8.hsd1.ma.comcast.net | 2022-09-30T12:46:10 | 0
        | 0                | 0.20071504695935447 | 0            | 0
| 0          | 0             | 0           | 14.614564385643801 |
85.18472056714127 |
| cpu-total | MacBook-Pro-8.hsd1.ma.comcast.net | 2022-09-30T12:46:20 | 0
        | 0                | 0.2313367513523604  | 0            | 0
| 0          | 0             | 0           | 13.967737901756506 |
85.80092534727326 |
| cpu-total | MacBook-Pro-8.hsd1.ma.comcast.net | 2022-09-30T12:46:30 | 0
        | 0                | 0.8125507843064688  | 0            | 0
| 0          | 0             | 0           | 9.569348084258632  |
89.61810113119842 |
| cpu-total | MacBook-Pro-8.hsd1.ma.comcast.net | 2022-09-30T12:46:40 | 0
        | 0                | 0.700087511006769   | 0            | 0
| 0          | 0             | 0           | 9.744968120985714  |
89.55494436780741 |
| cpu-total | MacBook-Pro-8.hsd1.ma.comcast.net | 2022-09-30T12:46:50 | 0
        | 0                | 3.7204128301494865  | 0            | 0
| 0          | 0             | 0           | 19.522897225075514 |
76.75668994472105 |
| cpu-total | MacBook-Pro-8.hsd1.ma.comcast.net | 2022-09-30T12:47:00 | 0
        | 0                | 0.19592971785649965 | 0            | 0
| 0          | 0             | 0           | 18.986221716745344 |
80.8178485658948  |
| cpu-total | MacBook-Pro-8.hsd1.ma.comcast.net | 2022-09-30T12:47:10 | 0
        | 0                | 2.2297170696832063  | 0            | 0
| 0          | 0             | 0           | 13.821747548435754 |
83.94853538128119 |
| cpu-total | MacBook-Pro-8.hsd1.ma.comcast.net | 2022-09-30T12:47:20 | 0
        | 0                | 1.5260491584825744  | 0            | 0
| 0          | 0             | 0           | 11.851898180099917 |
86.62205266189078 |
+-----------+-----------------------------------+---------------------+-------------+------------------+---------------------+--------------+-----------+------------+---------------+-------------+--------------------+-------------------+

On Mon, Nov 28, 2022 at 4:25 AM Martin Grigorov <mgrigo...@apache.org>
wrote:

> +1 (non-binding)
>
> The build and tests pass successfully on Ubuntu 22.10 x86_64!
>
> "maturin develop" hangs on my openEuler (Linux) 22.03 aarch64 system:
>
> =================================
> (venv) [mgrigorov@euler-arm-22 apache-arrow-datafusion-python-0.7.0]$
> maturin develop
> 🍹 Building a mixed python/rust project
> ^C
> (venv) [mgrigorov@euler-arm-22 apache-arrow-datafusion-python-0.7.0]$
> which
> maturin
> /tmp/apache-arrow-datafusion-python-0.7.0/venv/bin/maturin
> (venv) [mgrigorov@euler-arm-22 apache-arrow-datafusion-python-0.7.0]$
> maturin --help
> maturin 0.13.1
> Build and publish crates with pyo3, rust-cpython and cffi bindings as well
> as rust binaries as python packages
>
> USAGE:
>     maturin <SUBCOMMAND>
>
> OPTIONS:
>     -h, --help       Print help information
>     -V, --version    Print version information
>
> SUBCOMMANDS:
>     build          Build the crate into python packages
>     publish        Build and publish the crate as python packages to pypi
>     list-python    Search and list the available python installations
>     develop        Install the crate as module in the current virtualenv
>     sdist          Build only a source distribution (sdist) without
> compiling
>     init           Create a new cargo project in an existing directory
>     new            Create a new cargo project
>     upload         Upload python packages to pypi
>     help           Print this message or the help of the given
> subcommand(s)
> (venv) [mgrigorov@euler-arm-22 apache-arrow-datafusion-python-0.7.0]$
> maturin build
> 🍹 Building a mixed python/rust project
> ^C
> =================================
>
> I'll try to find out what is the problem there!
>
> On Sat, Nov 26, 2022 at 7:01 PM Andy Grove <andygrov...@gmail.com> wrote:
>
> > Hi,
> >
> > I would like to propose a release of Apache Arrow DataFusion Python
> > Bindings,
> > version 0.7.0.
> >
> > This release candidate is based on commit:
> > bd1b78b6d444b7ab172c6aec23fa58c842a592d7 [1]
> > The proposed release tarball and signatures are hosted at [2].
> > The changelog is located at [3].
> > The Python wheels are available on testpypi [4].
> >
> > Please download, verify checksums and signatures, run the unit tests, and
> > vote
> > on the release. The vote will be open for at least 72 hours.
> >
> > Only votes from PMC members are binding, but all members of the community
> > are
> > encouraged to test the release and vote with "(non-binding)".
> >
> > [ ] +1 Release this as Apache Arrow DataFusion Python 0.7.0
> > [ ] +0
> > [ ] -1 Do not release this as Apache Arrow DataFusion Python 0.7.0
> > because...
> >
> > Here is my vote:
> >
> > +1
> >
> > [1]:
> >
> >
> https://github.com/apache/arrow-datafusion-python/tree/bd1b78b6d444b7ab172c6aec23fa58c842a592d7
> > [2]:
> >
> >
> https://dist.apache.org/repos/dist/dev/arrow/apache-arrow-datafusion-python-0.7.0-rc2
> > [3]:
> >
> >
> https://github.com/apache/arrow-datafusion-python/blob/bd1b78b6d444b7ab172c6aec23fa58c842a592d7/CHANGELOG.md
> > [4] https://test.pypi.org/project/datafusion/0.7.0/
> >
>

Reply via email to