[Comet] Enable GitHub Discussions for datafusion-comet repo?
There is a proposal [1] to enable the GitHub discussion feature for the datafusion-comet repo. We need to provide ASF INFRA with a link to a discussion showing that there is consensus for enabling this, so I would like to start an informal vote with this email to see if the majority of community members are in favor of this. Please go ahead and vote with +1, 0, or -1 where +1 means you agree with enabling this feature. Everyone is welcome to vote since this isn’t an official ASF release vote. I’ll start: +1 Thanks, Andy. [1] https://github.com/apache/datafusion-comet/issues/368
[VOTE] Release DataFusion Python Bindings 37.1.0 RC1
Hi, I would like to propose a release of the Apache DataFusion Python Bindings, version 37.1.0. Many thanks to Michael Ward for actually preparing this release. This release candidate is based on commit: 7f276516a644cde908cf74795251746d482d1829 [1] The proposed release tarball and signatures are hosted at [2]. The changelog is located at [3]. The Python wheels are located at [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)". The standard verification procedure is documented at https://github.com/apache/datafusion-python/blob/main/dev/release/README.md#verifying-release-candidates. [ ] +1 Release this as Apache DataFusion Python 37.1.0 [ ] +0 [ ] -1 Do not release this as Apache DataFusion Python 37.1.0 because... Here is my vote: +1 [1]: https://github.com/apache/datafusion-python/tree/7f276516a644cde908cf74795251746d482d1829 [2]: https://dist.apache.org/repos/dist/dev/datafusion/apache-datafusion-python-37.1.0-rc1 [3]: https://github.com/apache/datafusion-python/blob/7f276516a644cde908cf74795251746d482d1829/CHANGELOG.md [4]: https://test.pypi.org/project/datafusion/37.1.0/ - To unsubscribe, e-mail: dev-unsubscr...@datafusion.apache.org For additional commands, e-mail: dev-h...@datafusion.apache.org
Re: [Comet] Enable GitHub Discussions for datafusion-comet repo?
I think discussions have served us very well in DataFusion core[1] and thus I think enabling them in datafusion-comet is a good idea +1 Andrew [1] https://github.com/apache/datafusion/discussions On Thu, May 9, 2024 at 1:00 PM Andy Grove wrote: > There is a proposal [1] to enable the GitHub discussion feature for the > datafusion-comet repo. > > We need to provide ASF INFRA with a link to a discussion showing that > there is consensus for enabling this, so I would like to start an informal > vote with this email to see if the majority of community members are in > favor of this. > > Please go ahead and vote with +1, 0, or -1 where +1 means you agree with > enabling this feature. Everyone is welcome to vote since this isn’t an > official ASF release vote. > > I’ll start: > > +1 > > Thanks, > > Andy. > > [1] https://github.com/apache/datafusion-comet/issues/368
Re: [Comet] Enable GitHub Discussions for datafusion-comet repo?
Yes, I think enabling Discussions has lowered the perceived bar to ask questions and provides a nice integration with GitHub Issues/PRs. +1 Thanks, Phillip From: Andrew Lamb Date: Friday, May 10, 2024 at 2:25 AM To: dev@datafusion.apache.org Subject: Re: [Comet] Enable GitHub Discussions for datafusion-comet repo? I think discussions have served us very well in DataFusion core[1] and thus I think enabling them in datafusion-comet is a good idea +1 Andrew [1] https://github.com/apache/datafusion/discussions On Thu, May 9, 2024 at 1:00 PM Andy Grove wrote: > There is a proposal [1] to enable the GitHub discussion feature for the > datafusion-comet repo. > > We need to provide ASF INFRA with a link to a discussion showing that > there is consensus for enabling this, so I would like to start an informal > vote with this email to see if the majority of community members are in > favor of this. > > Please go ahead and vote with +1, 0, or -1 where +1 means you agree with > enabling this feature. Everyone is welcome to vote since this isn’t an > official ASF release vote. > > I’ll start: > > +1 > > Thanks, > > Andy. > > [1] https://github.com/apache/datafusion-comet/issues/368
Re: [VOTE] Release DataFusion Python Bindings 37.1.0 RC1
+1 I verified this works in a new conda environment: conda create --name datafusion-python python=3.11 From: Andy Grove Date: Friday, May 10, 2024 at 2:22 AM To: dev@datafusion.apache.org Subject: [VOTE] Release DataFusion Python Bindings 37.1.0 RC1 Hi, I would like to propose a release of the Apache DataFusion Python Bindings, version 37.1.0. Many thanks to Michael Ward for actually preparing this release. This release candidate is based on commit: 7f276516a644cde908cf74795251746d482d1829 [1] The proposed release tarball and signatures are hosted at [2]. The changelog is located at [3]. The Python wheels are located at [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)". The standard verification procedure is documented at https://github.com/apache/datafusion-python/blob/main/dev/release/README.md#verifying-release-candidates. [ ] +1 Release this as Apache DataFusion Python 37.1.0 [ ] +0 [ ] -1 Do not release this as Apache DataFusion Python 37.1.0 because... Here is my vote: +1 [1]: https://github.com/apache/datafusion-python/tree/7f276516a644cde908cf74795251746d482d1829 [2]: https://dist.apache.org/repos/dist/dev/datafusion/apache-datafusion-python-37.1.0-rc1 [3]: https://github.com/apache/datafusion-python/blob/7f276516a644cde908cf74795251746d482d1829/CHANGELOG.md [4]: https://test.pypi.org/project/datafusion/37.1.0/ - To unsubscribe, e-mail: dev-unsubscr...@datafusion.apache.org For additional commands, e-mail: dev-h...@datafusion.apache.org
Re: [VOTE] Release DataFusion Python Bindings 37.1.0 RC1
(hit send too soon) +1 (non-binding) I verified this works in a new conda environment: conda create --name datafusion-python python=3.11 conda activate datafusion-python pip install --extra-index-url https://test.pypi.org/simple/ datafusion==37.1.0 python3 >>> from datafusion import SessionContext >>> ctx = SessionContext() >>> ctx.register_parquet('taxi', '/Users/phillip/data/taxi_trips.parquet') >>> df = ctx.sql("SELECT * FROM taxi") >>> df From: Phillip LeBlanc Date: Friday, May 10, 2024 at 10:59 AM To: dev@datafusion.apache.org Subject: Re: [VOTE] Release DataFusion Python Bindings 37.1.0 RC1 +1 (non-binding) I verified this works in a new conda environment: conda create --name datafusion-python python=3.11 From: Andy Grove Date: Friday, May 10, 2024 at 2:22 AM To: dev@datafusion.apache.org Subject: [VOTE] Release DataFusion Python Bindings 37.1.0 RC1 Hi, I would like to propose a release of the Apache DataFusion Python Bindings, version 37.1.0. Many thanks to Michael Ward for actually preparing this release. This release candidate is based on commit: 7f276516a644cde908cf74795251746d482d1829 [1] The proposed release tarball and signatures are hosted at [2]. The changelog is located at [3]. The Python wheels are located at [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)". The standard verification procedure is documented at https://github.com/apache/datafusion-python/blob/main/dev/release/README.md#verifying-release-candidates. [ ] +1 Release this as Apache DataFusion Python 37.1.0 [ ] +0 [ ] -1 Do not release this as Apache DataFusion Python 37.1.0 because... Here is my vote: +1 [1]: https://github.com/apache/datafusion-python/tree/7f276516a644cde908cf74795251746d482d1829 [2]: https://dist.apache.org/repos/dist/dev/datafusion/apache-datafusion-python-37.1.0-rc1 [3]: https://github.com/apache/datafusion-python/blob/7f276516a644cde908cf74795251746d482d1829/CHANGELOG.md [4]: https://test.pypi.org/project/datafusion/37.1.0/ - To unsubscribe, e-mail: dev-unsubscr...@datafusion.apache.org For additional commands, e-mail: dev-h...@datafusion.apache.org