Re: [VOTE] Release PyLucene 9.10.0-rc1

2024-02-29 Thread Dawid Weiss
+1. On Wed, Feb 21, 2024 at 10:50 PM Andi Vajda wrote: > > The PyLucene 9.10.0 (rc1) release tracking the recent release of > Apache Lucene 9.10.0 is ready. > > A release candidate is available from: > https://dist.apache.org/repos/dist/dev/lucene/pylucene/9.10.0-rc1/ > > PyLucene 9.10.0 is

Re: The future of the PyLucene project

2024-02-28 Thread Dawid Weiss
Hi Andi, This time, crickets, the voting thread has been completely quiet. > For me - and it's not an excuse at all - you hit winter holidays, I'm really sorry! > If the Lucene PMC agrees and no PyLucene users come forward, I propose the > following: >- shutdown the PyLucene project >-

Re: [VOTE] Release PyLucene 9.7.0-rc1

2023-07-09 Thread Dawid Weiss
+1 to release. Thanks Andi. On Thu, Jul 6, 2023 at 9:47 AM Andi Vajda wrote: > > The PyLucene 9.7.0 (rc1) release tracking the recent release of > Apache Lucene 9.7.0 is ready. > > A release candidate is available from: > https://dist.apache.org/repos/dist/dev/lucene/pylucene/9.7.0-rc1/ > >

Re: [VOTE] Release PyLucene 9.6.0-rc1

2023-06-02 Thread Dawid Weiss
Late, but +1 to release. Thank you Andi! Dawid On Tue, May 30, 2023 at 1:44 AM Andi Vajda wrote: > > The PyLucene 9.6.0 (rc1) release tracking the recent release of > Apache Lucene 9.6.0 is ready. > > A release candidate is available from: >

Re: [VOTE] Release PyLucene 9.4.1-rc3

2022-11-07 Thread Dawid Weiss
+1 to release, thanks Andi! Dawid On Tue, Nov 1, 2022 at 9:37 PM Andi Vajda wrote: > > The PyLucene 9.4.1 (rc3) release tracking the recent release of > Apache Lucene 9.4.1 is ready. > > A release candidate is available from: >

Re: [VOTE] Release PyLucene 9.1.0 (rc4)

2022-04-25 Thread Dawid Weiss
Works for me this time. +1 to release. Dawid On Fri, Apr 22, 2022 at 11:52 PM Andi Vajda wrote: > > > The PyLucene 9.1.0 (rc4) release tracking last month's release of > Apache Lucene 9.1.0 is ready. > > A release candidate is available from: >

Re: [VOTE] Release PyLucene 9.1.0

2022-04-20 Thread Dawid Weiss
Hi Andi, > If you tell me what OS you are on and what the error actually is, I can > help > you a bit better. But assuming you're on a Mac, you do not need to export I'm actually on Windows but I tried to compile everything on Linux - an older Ubuntu with Java 17 installed. Here is what I see:

Re: [VOTE] Release PyLucene 9.1.0

2022-04-19 Thread Dawid Weiss
Hi Andi, I downloaded the release - these files and folders should be probably excluded from the distribution as it's gradle's binary throw-away caches and generated stuff: pylucene-9.1.0/lucene-java-9.1.0/.gradle pylucene-9.1.0/lucene-java-9.1.0/gradle.properties Perhaps you should use "git

Re: [VOTE] Release PyLucene 8.9.0

2021-06-21 Thread Dawid Weiss
+1. Dawid On Fri, Jun 18, 2021 at 3:16 AM Andi Vajda wrote: > > > The PyLucene 8.9.0 (rc1) release tracking today's release of > Apache Lucene 8.9.0 is ready. > > A release candidate is available from: > https://dist.apache.org/repos/dist/dev/lucene/pylucene/8.9.0-rc1/ > > PyLucene 8.9.0 is

Re: [VOTE] Release PyLucene 8.8.1

2021-03-04 Thread Dawid Weiss
Apologies for being late to the party: +1 from me. D. On Tue, Mar 2, 2021 at 3:35 AM Andi Vajda wrote: > > > The PyLucene 8.8.1 (rc1) release tracking the recent release of > Apache Lucene 8.8.1 is ready. > > A release candidate is available from: >

Re: [VOTE] Release PyLucene 8.6.1

2020-09-09 Thread Dawid Weiss
+1 to release, thanks Andi. Dawid On Tue, Aug 25, 2020 at 1:56 AM Andi Vajda wrote: > > > The PyLucene 8.6.1 (rc1) release tracking the recent release of > Apache Lucene 8.6.1 is ready. > > A release candidate is available from: >

Re: [VOTE] Release PyLucene 7.5.0 (rc2)

2018-10-16 Thread Dawid Weiss
+1. Dawid On Tue, Oct 16, 2018 at 6:46 AM Andi Vajda wrote: > > > The PyLucene 7.5.0 (rc2) release tracking the recent release of > Apache Lucene 7.5.0 is ready. > > A release candidate is available from: >https://dist.apache.org/repos/dist/dev/lucene/pylucene/7.5.0-rc2/ > > PyLucene 7.5.0

[VOTE] Release PyLucene 7.4.0 (rc1)

2018-08-30 Thread Dawid Weiss
+1 to release. Dawid

Re: FacetExample.py

2013-02-14 Thread Dawid Weiss
This one: lucene/core/src/test/org/apache/lucene/search/TestSort.java Yeah, I figured by comparing the size of these three... So, to make it short -- every thread should get its own Random instance from a call to LuceneTestCase's public static Random random() { return

Re: FacetExample.py

2013-02-14 Thread Dawid Weiss
Hi folks, about the randomness: I think this should not be the case. if different threads try to share the same random, actually there should be an exception from the test framework saying that each thread should get its own random (eg. initialized by a long value). So lucene-java tests

Re: FacetExample.py

2013-02-14 Thread Dawid Weiss
So, if each thread gets the same seed, then they should also get the same random values, right ? They would start from the same seed so if they're calling that Random in the same pattern then yes -- they'd get the same values. Any real randomness will be non-reproducible. If this is needed for