getRangeQuery

2014-07-24 Thread Marc Jeurissen

Hi all,

in PyLucene 4.5, when I execute dir(PythonQueryParser) , I get the 
following result:


['AND_OPERATOR', 'Clause', 'Conjunction', 'MethodRemovedUseAnother', 
'Modifiers', 'OR_OPERATOR', 'Operator', 'Query', 'ReInit', 'Term', 
'TopLevelQuery', '__class__', '__delattr__', '__doc__', '__eq__', 
'__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', 
'__init__', '__le__', '__lt__', '__ne__', '__new__', '__reduce__', 
'__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', 
'__subclasshook__', '_jobject', 'allowLeadingWildcard', 
'analyzeRangeTerms', 'analyzer', 'autoGeneratePhraseQueries', 'boxfn_', 
'cast_', 'class', 'class_', 'dateResolution', 'defaultOperator', 
'disable_tracing', 'enablePositionIncrements', 'enable_tracing', 
'equals', 'escape', 'field', 'finalize', 'fuzzyMinSim', 
'fuzzyPrefixLength', 'generateParseException', 
'getAllowLeadingWildcard', 'getAnalyzeRangeTerms', 'getAnalyzer', 
'getAutoGeneratePhraseQueries', 'getBooleanQuery', 'getClass', 
'getDateResolution', 'getDefaultOperator', 
'getEnablePositionIncrements', 'getField', 'getFieldQuery', 
'getFieldQuery_quoted_super', 'getFieldQuery_slop_super', 
'getFuzzyMinSim', 'getFuzzyPrefixLength', 'getFuzzyQuery', 'getLocale', 
'getLowercaseExpandedTerms', 'getMultiTermRewriteMethod', 
'getNextToken', 'getPhraseSlop', 'getPrefixQuery', 'getTimeZone', 
'getToken', 'getWildcardQuery', 'hashCode', 'init', 'instance_', 
'jj_nt', 'locale', 'lowercaseExpandedTerms', 'multiTermRewriteMethod', 
'nextToken', 'notify', 'notifyAll', 'parse', 'phraseSlop', 
'pythonExtension', 'self', 'setAllowLeadingWildcard', 
'setAnalyzeRangeTerms', 'setAutoGeneratePhraseQueries', 
'setDateResolution', 'setDefaultOperator', 
'setEnablePositionIncrements', 'setFuzzyMinSim', 'setFuzzyPrefixLength', 
'setLocale', 'setLowercaseExpandedTerms', 'setMultiTermRewriteMethod', 
'setPhraseSlop', 'setTimeZone', 'timeZone', 'toString', 'token', 
'token_source', 'wait', 'wrapfn_']


What seems to be missing is the 'getRangeQuery' function that I used to 
overwrite in my application (PyLucene version 3.6).


What is the equivalent of 'getRangeQuery' in 4.5?

Thank you

Marc Jeurissen



Re: [nag] [VOTE] Release PyLucene 4.10.4-1

2015-11-16 Thread Marc Jeurissen

+1

On 17/11/2015 1:03, Jeff Breidenbach wrote:

+1 (from a user)



--
Signature Marc Jeurissen | UAntwerpen
Met vriendelijke groeten,

Marc Jeurissen

<http://anet.be>
Bibliotheek UAntwerpen
Stadscampus - S.A.085
Prinsstraat 9 - 2000 Antwerpen
marc.jeuris...@uantwerpen.be <mailto:marc.jeuris...@uantwerpen.be>
T +32 3 265 49 71
<http://anet.be>


Re: [POLL] What should happen to PyLucene now?

2016-07-01 Thread Marc Jeurissen



On 1/07/2016 11:32, Jan Høydahl wrote:

Hi

As you all know not much has happened with PyLucene lately.
So I’m throwing out this poll to check the sentiment of the community.

Question: What should happen to PyLucene now?

[ ]  I’m happy with the last 4.x release, no need for new releases
[X]  Please, a new 6.x release (but I can’t contribute)
[ ]  I’ll help make a new release happen, if I get some help!
[ ]  Only care about the JCC part
[ ]  Close down the sub project
[ ]  Don’t care. I’m no longer a user
[ ]  Other: __

--
Jan Høydahl, search solution architect
Cominvent AS - www.cominvent.com
Lucene commiter & PMC member


--
Signature Marc Jeurissen | UAntwerpen
Met vriendelijke groeten,

Marc Jeurissen

<http://anet.be>
Bibliotheek UAntwerpen
Stadscampus - S.A.085
Prinsstraat 9 - 2000 Antwerpen
marc.jeuris...@uantwerpen.be <mailto:marc.jeuris...@uantwerpen.be>
T +32 3 265 49 71
<http://anet.be>


Re: [VOTE] Release PyLucene 6.2.0 (rc2)

2016-09-09 Thread Marc Jeurissen

+1


On 9/09/2016 12:06, Andi Vajda wrote:


After an almost two year hiatus, a new PyLucene version is ready for 
release. The PyLucene 6.2.0 (rc2) release tracking the recent release 
of Apache Lucene 6.2.0 is ready.


A release candidate is available from:
https://dist.apache.org/repos/dist/dev/lucene/pylucene/6.2.0-rc2/

PyLucene 6.2.0 is built with JCC 2.22 included in these release 
artifacts.


Please vote to release these artifacts as PyLucene 6.2.0.
Anyone interested in this release can and should vote !

Thanks !

Andi..

ps: the KEYS file for PyLucene release signing is at:
https://dist.apache.org/repos/dist/release/lucene/pylucene/KEYS
https://dist.apache.org/repos/dist/dev/lucene/pylucene/KEYS

pps: here is my +1



--
Signature Marc Jeurissen | UAntwerpen
Met vriendelijke groeten,

Marc Jeurissen

<http://anet.be>
Bibliotheek UAntwerpen
Stadscampus - S.A.085
Prinsstraat 9 - 2000 Antwerpen
marc.jeuris...@uantwerpen.be <mailto:marc.jeuris...@uantwerpen.be>
T +32 3 265 49 71
<http://anet.be>


Tokenizer text source

2016-10-25 Thread Marc Jeurissen

Hi,

I have a custom Analyzer and Tokenizer which I'm trying to migrate from 
Pylucene 4.10 to 6.2.


Problem is that it is no longer possible to grab the text source from 
neither the createComponents method or the Tokenizer constructor. 
Documentation says the Tokenizer has a field 'input' which contains the 
text source, but in Pylucene a Tokenizer does not seem to have a 
attribute 'input'..


Any idea how I can address the text source?

analyzer = MyAnalyzer()-> 'createComponents' sets MyTokenizer
config = IndexWriterConfig(analyzer)
config.setOpenMode(IndexWriterConfig.OpenMode.CREATE)
store = SimpleFSDirectory()
writer = IndexWriter(store, config)
doc = Document()
doc.add(Field("title", "value of testing",TextField.TYPE_NOT_STORED))
writer.addDocument(doc) -> calls incrementToken of MyTokenizer but I 
need to grab the text source in order to create my tokens.


Thank you

--
Signature Marc Jeurissen | UAntwerpen
Met vriendelijke groeten,

Marc Jeurissen

<http://anet.be>
Bibliotheek UAntwerpen
Stadscampus - S.A.085
Prinsstraat 9 - 2000 Antwerpen
marc.jeuris...@uantwerpen.be <mailto:marc.jeuris...@uantwerpen.be>
T +32 3 265 49 71
<http://anet.be>


Re: [VOTE] Release PyLucene 6.4.1 (rc1)

2017-02-07 Thread Marc Jeurissen

+1


On 6/02/2017 22:38, Andi Vajda wrote:


The PyLucene 6.4.1 (rc1) release tracking today's release of
Apache Lucene 6.4.1 is ready.

A release candidate is available from:
https://dist.apache.org/repos/dist/dev/lucene/pylucene/6.4.1-rc1/

PyLucene 6.4.1 is built with JCC 2.23 included in these release 
artifacts.


Please vote to release these artifacts as PyLucene 6.4.1.
Anyone interested in this release can and should vote !

Thanks !

Andi..

ps: the KEYS file for PyLucene release signing is at:
https://dist.apache.org/repos/dist/release/lucene/pylucene/KEYS
https://dist.apache.org/repos/dist/dev/lucene/pylucene/KEYS

pps: here is my +1


--
Signature Marc Jeurissen | UAntwerpen
Met vriendelijke groeten,

Marc Jeurissen

<http://anet.be>
Bibliotheek UAntwerpen
Stadscampus – Ve35.303
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be <mailto:marc.jeuris...@uantwerpen.be>
T +32 3 265 49 71
<http://anet.be>


RE: [VOTE] Release PyLucene 7.2.0 (rc1)

2017-12-21 Thread Marc Jeurissen
+1

-- 
Met vriendelijke groeten, 
Marc Jeurissen 

Anet.be
Bibliotheek UAntwerpen
Stadscampus – Ve35.303 
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be 
T +32 3 265 49 71 

From: Andi Vajda
Sent: donderdag 21 december 2017 12:50
To: pylucene-dev@lucene.apache.org
Cc: gene...@lucene.apache.org
Subject: [VOTE] Release PyLucene 7.2.0 (rc1)


The PyLucene 7.2.0 (rc1) release tracking the upcoming release of
Apache Lucene 7.2.0 is ready.

A release candidate is available from:
   https://dist.apache.org/repos/dist/dev/lucene/pylucene/7.2.0-rc1/

PyLucene 7.2.0 is built with JCC 3.1 included in these release artifacts.

JCC 3.1 supports Python 3.3+ (in addition to Python 2.3+).
PyLucene may be built with Python 2 or Python 3.

Please vote to release these artifacts as PyLucene 7.2.0.
Anyone interested in this release can and should vote !

Thanks !

Andi..

ps: the KEYS file for PyLucene release signing is at:
https://dist.apache.org/repos/dist/release/lucene/pylucene/KEYS
https://dist.apache.org/repos/dist/dev/lucene/pylucene/KEYS

pps: here is my +1



RE: [VOTE] Release PyLucene 7.4.0 (rc1)

2018-08-28 Thread Marc Jeurissen
+1

Met vriendelijke groeten,
Marc Jeurissen

Bibliotheek UAntwerpen
Stadscampus – Ve35.303
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be
T +32 3 265 49 71



From: Andi Vajda
Sent: dinsdag 28 augustus 2018 20:05
To: pylucene-dev@lucene.apache.org
Cc: gene...@lucene.apache.org
Subject: [VOTE] Release PyLucene 7.4.0 (rc1)


The PyLucene 7.4.0 (rc1) release tracking the recent release of
Apache Lucene 7.4.0 is ready.

A release candidate is available from:
   https://dist.apache.org/repos/dist/dev/lucene/pylucene/7.4.0-rc1/

PyLucene 7.4.0 is built with JCC 3.2 included in these release artifacts.

JCC 3.2 supports Python 3.3+ (in addition to Python 2.3+).
PyLucene may be built with Python 2 or Python 3.

Please vote to release these artifacts as PyLucene 7.4.0.
Anyone interested in this release can and should vote !

Thanks !

Andi..

ps: the KEYS file for PyLucene release signing is at:
https://dist.apache.org/repos/dist/release/lucene/pylucene/KEYS
https://dist.apache.org/repos/dist/dev/lucene/pylucene/KEYS

pps: here is my +1



RE: [VOTE] Release PyLucene 7.5.0 (rc1)

2018-10-15 Thread Marc Jeurissen
+1

Met vriendelijke groeten,
Marc Jeurissen

Bibliotheek UAntwerpen
Stadscampus – Ve35.303
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be
T +32 3 265 49 71



From: Andi Vajda
Sent: maandag 15 oktober 2018 20:50
To: pylucene-dev@lucene.apache.org
Cc: gene...@lucene.apache.org
Subject: [VOTE] Release PyLucene 7.5.0 (rc1)


The PyLucene 7.5.0 (rc1) 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-rc1/

PyLucene 7.5.0 is built with JCC 3.3 included in these release artifacts.

JCC 3.3 supports Python 3.3+ (in addition to Python 2.3+).
PyLucene may be built with Python 2 or Python 3.

Please vote to release these artifacts as PyLucene 7.5.0.
Anyone interested in this release can and should vote !

Thanks !

Andi..

ps: the KEYS file for PyLucene release signing is at:
https://dist.apache.org/repos/dist/release/lucene/pylucene/KEYS
https://dist.apache.org/repos/dist/dev/lucene/pylucene/KEYS

pps: here is my +1



RE: [VOTE] Release PyLucene 7.6.0 (rc1)

2019-01-06 Thread Marc Jeurissen
+1

Met vriendelijke groeten,
Marc Jeurissen

Bibliotheek UAntwerpen
Stadscampus – Ve35.303
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be
T +32 3 265 49 71



From: Andi Vajda
Sent: vrijdag 4 januari 2019 22:59
To: pylucene-dev@lucene.apache.org
Cc: gene...@lucene.apache.org
Subject: [VOTE] Release PyLucene 7.6.0 (rc1)


The PyLucene 7.6.0 (rc1) release tracking the recent release of
Apache Lucene 7.6.0 is ready.

A release candidate is available from:
   https://dist.apache.org/repos/dist/dev/lucene/pylucene/7.6.0-rc1/

PyLucene 7.6.0 is built with JCC 3.4 included in these release artifacts.

JCC 3.4 supports Python 3.3+ (in addition to Python 2.3+).
PyLucene may be built with Python 2 or Python 3.

Please vote to release these artifacts as PyLucene 7.6.0.
Anyone interested in this release can and should vote !

Thanks !

Andi..

ps: the KEYS file for PyLucene release signing is at:
https://dist.apache.org/repos/dist/release/lucene/pylucene/KEYS
https://dist.apache.org/repos/dist/dev/lucene/pylucene/KEYS

pps: here is my +1



RE: [VOTE] Release PyLucene 8.1.1

2019-06-10 Thread Marc Jeurissen
+1

Met vriendelijke groeten,
Marc Jeurissen

Bibliotheek UAntwerpen
Stadscampus – Ve35.303
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be
T +32 3 265 49 71



From: Andi Vajda
Sent: dinsdag 11 juni 2019 0:40
To: Andi Vajda
Cc: pylucene-dev@lucene.apache.org; gene...@lucene.apache.org
Subject: [VOTE] Release PyLucene 8.1.1


The PyLucene 8.1.1 (rc1) release tracking the recent release of
Apache Lucene 8.1.1 is ready.

A release candidate is available from:
   https://dist.apache.org/repos/dist/dev/lucene/pylucene/8.1.1-rc1/

PyLucene 8.1.1 is built with JCC 3.5, included in these release artifacts.

JCC 3.5 supports Python 3.3+ (in addition to Python 2.3+).
PyLucene may be built with Python 2 or Python 3.

Please vote to release these artifacts as PyLucene 8.1.1.
Anyone interested in this release can and should vote !

Thanks !

Andi..

ps: the KEYS file for PyLucene release signing is at:
https://dist.apache.org/repos/dist/release/lucene/pylucene/KEYS
https://dist.apache.org/repos/dist/dev/lucene/pylucene/KEYS

pps: here is my +1



Field.setStringValue

2019-10-09 Thread Marc Jeurissen
Good day to you,

I have the following issue when setting the value of a field, value containing 
a character > 160 (Pylucene 8.1.1, Python 3.7.2)

...
(Pdb) field
>
(Pdb) value = '«Volgende facturen werden verstuurd aan de financiële dienst.»'
(Pdb) type(value)

(Pdb) field.setStringValue(value)
(Pdb) field
>

The field value has lost 2 characters.

But when I encode value:

(Pdb) value = value.encode('utf-8')
(Pdb) value
b'\xc2\xabVolgende facturen werden verstuurd aan de financi\xc3\xable 
dienst.\xc2\xbb'

(Pdb) field.setStringValue(value)
(Pdb) field
>

The field value is correct.

So what does field.setStringValue expect: a string (as says the Lucene 
documentation) or a byte sequence?

Thank you very much.


Met vriendelijke groeten,
Marc Jeurissen

Bibliotheek UAntwerpen
Stadscampus – Ve35.303
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be
T +32 3 265 49 71





RE: Field.setStringValue

2019-10-10 Thread Marc Jeurissen
Ok thank you Andi.
I’ll use the sidepath with the bytes for the moment.
Hope it will get solved soon though.


Met vriendelijke groeten,
Marc Jeurissen

Bibliotheek UAntwerpen
Stadscampus – Ve35.303
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be
T +32 3 265 49 71



From: Andi Vajda
Sent: woensdag 9 oktober 2019 23:33
To: Andi Vajda
Cc: pylucene-dev@lucene.apache.org
Subject: Re: Field.setStringValue


On Wed, 9 Oct 2019, Andi Vajda wrote:

>
> On Wed, 9 Oct 2019, Marc Jeurissen wrote:
>
>> Good day to you,
>> 
>> I have the following issue when setting the value of a field, value 
>> containing a character > 160 (Pylucene 8.1.1, Python 3.7.2)
>> 
>> ...
>> (Pdb) field
>> > indexOptions=DOCS_AND_FREQS_AND_POSITIONS_AND_OFFSETS>
>> (Pdb) value = '«Volgende facturen werden verstuurd aan de financiële 
>> dienst.»'
>> (Pdb) type(value)
>> 
>> (Pdb) field.setStringValue(value)
>> (Pdb) field
>> > stored,indexed,tokenized,omitNorms,indexOptions=DOCS_AND_FREQS_AND_POSITIONS_AND_OFFSETS>  
>> facturen werden verstuurd aan de financiële dienst>>
>> 
>> The field value has lost 2 characters.
>> 
>> But when I encode value:
>> 
>> (Pdb) value = value.encode('utf-8')
>> (Pdb) value
>> b'\xc2\xabVolgende facturen werden verstuurd aan de financi\xc3\xable 
>> dienst.\xc2\xbb'
>> 
>> (Pdb) field.setStringValue(value)
>> (Pdb) field
>> > stored,indexed,tokenized,omitNorms,indexOptions=DOCS_AND_FREQS_AND_POSITIONS_AND_OFFSETS>  
>> facturen werden verstuurd aan de financiële dienst.»>>
>> 
>> The field value is correct.
>> 
>> So what does field.setStringValue expect: a string (as says the Lucene 
>> documentation) or a byte sequence?
>
> Indeed, there is a problem. I was able to reproduce it with just 
> StringBuffer, no lucene involved at all:
>
>>>> from lucene import initVM
>>>> initVM()
>>>> b=b'\xc2\xabVolgende facturen werden verstuurd aan de 
>>>> financi\xc3\xabledienst.\xc2\xbb'
>>>> a=b.decode('utf-8')
>>>> from java.lang import StringBuffer
>>>> StringBuffer(b)
> 
>>>> StringBuffer(a)
> 
>>>> StringBuffer(a).length()
> 59
>>>> StringBuffer(b).length()
> 61
>>>> type(a)
> 
>>>> type(b)
> 
>
> There must be a bug in the Python 'str' -> Java 'String' conversion code.
> Any Java API such as field.setStringValue() that expects a java.lang.String() 
> can be passed a 'str' or 'bytes', JCC auto-converts as needed. This is very 
> likely where the bug is.

Digging a bit further, it doesn't seem to be a problem when using Python 2. 
I'm not implying this is a python bug, strings are just very different 
between python 2 and 3.

Andi..

>
> Andi..
>
>> 
>> Thank you very much.
>> 
>> 
>> Met vriendelijke groeten,
>> Marc Jeurissen
>> 
>> Bibliotheek UAntwerpen
>> Stadscampus ? Ve35.303
>> Venusstraat 35 ? 2000 Antwerpen
>> marc.jeuris...@uantwerpen.be
>> T +32 3 265 49 71
>> 
>> 
>> 
>



RE: [VOTE] Release PyLucene 8.3.0

2019-11-03 Thread Marc Jeurissen
+1

Met vriendelijke groeten,
Marc Jeurissen

Bibliotheek UAntwerpen
Stadscampus – Ve35.303
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be
T +32 3 265 49 71



From: Andi Vajda
Sent: maandag 4 november 2019 2:54
To: pylucene-dev@lucene.apache.org
Cc: gene...@lucene.apache.org
Subject: [VOTE] Release PyLucene 8.3.0


The PyLucene 8.3.0 (rc1) release tracking the recent release of
Apache Lucene 8.3.0 is ready.

A release candidate is available from:
   https://dist.apache.org/repos/dist/dev/lucene/pylucene/8.3.0-rc1/

PyLucene 8.3.0 is built with JCC 3.7, included in these release artifacts.

JCC 3.7 supports Python 3.3 up to Python 3.8 (in addition to Python 2.3+).
PyLucene may be built with Python 2 or Python 3.

Please vote to release these artifacts as PyLucene 8.3.0.
Anyone interested in this release can and should vote !

Thanks !

Andi..

ps: the KEYS file for PyLucene release signing is at:
https://dist.apache.org/repos/dist/release/lucene/pylucene/KEYS
https://dist.apache.org/repos/dist/dev/lucene/pylucene/KEYS

pps: here is my +1



Tokenizer

2020-03-19 Thread Marc Jeurissen
Pylucene version: 8.1.1

Hi all,

When you have a custom tokenizer (class CustomTokenizer(PythonTokenizer)), you 
don’t seem to be able to override any method besides incrementToken (so not 
end, reset, close).

Is this correct?

Thank you very much



Met vriendelijke groeten,
Marc Jeurissen

Bibliotheek UAntwerpen
Stadscampus – Ve35.303
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be
T +32 3 265 49 71





RE: [VOTE] Release PyLucene 8.6.1

2020-08-24 Thread Marc Jeurissen
+1

Met vriendelijke groeten,
Marc Jeurissen

Bibliotheek UAntwerpen
Stadscampus – Ve35.303
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be
T +32 3 265 49 71


From: Andi Vajda
Sent: dinsdag 25 augustus 2020 1:57
To: pylucene-dev@lucene.apache.org
Cc: gene...@lucene.apache.org
Subject: [VOTE] Release PyLucene 8.6.1


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:

https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdist.apache.org%2Frepos%2Fdist%2Fdev%2Flucene%2Fpylucene%2F8.6.1-rc1%2F&data=02%7C01%7Cmarc.jeurissen%40uantwerpen.be%7Cf02e60a8c77e48b86bae08d84889595e%7C792e08fb2d544a8eaf72202548136ef6%7C0%7C0%7C637339102344220587&sdata=%2BO6YIppp6j8yOQIbI7Zr7gkMjKkZ2kmNCntX1w7%2FMZg%3D&reserved=0

PyLucene 8.6.1 is built with JCC 3.8, included in these release artifacts.

JCC 3.8 supports Python 3.3 up to Python 3.8 (in addition to Python 2.3+).
PyLucene may be built with Python 2 or Python 3.

Please vote to release these artifacts as PyLucene 8.6.1.
Anyone interested in this release can and should vote !

Thanks !

Andi..

ps: the KEYS file for PyLucene release signing is at:
https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdist.apache.org%2Frepos%2Fdist%2Frelease%2Flucene%2Fpylucene%2FKEYS&data=02%7C01%7Cmarc.jeurissen%40uantwerpen.be%7Cf02e60a8c77e48b86bae08d84889595e%7C792e08fb2d544a8eaf72202548136ef6%7C0%7C0%7C637339102344220587&sdata=Hmv%2B3IH96x4tF7PB4%2FA8e%2B7H3MPOx5I0pJLaIcJBHzo%3D&reserved=0
https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdist.apache.org%2Frepos%2Fdist%2Fdev%2Flucene%2Fpylucene%2FKEYS&data=02%7C01%7Cmarc.jeurissen%40uantwerpen.be%7Cf02e60a8c77e48b86bae08d84889595e%7C792e08fb2d544a8eaf72202548136ef6%7C0%7C0%7C637339102344220587&sdata=xdZ%2F1lm7pihjX%2F1epQ3SWRwAHqIoyYQKQYskxQhUMRk%3D&reserved=0

pps: here is my +1



RE: [VOTE] Release PyLucene 8.8.1

2021-03-01 Thread Marc Jeurissen
+1

Met vriendelijke groeten,
Marc Jeurissen

Bibliotheek UAntwerpen
Stadscampus – Ve35.303
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be
T +32 3 265 49 71


From: Andi Vajda
Sent: dinsdag 2 maart 2021 3:37
To: pylucene-dev@lucene.apache.org
Cc: gene...@lucene.apache.org
Subject: [VOTE] Release PyLucene 8.8.1


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:

https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdist.apache.org%2Frepos%2Fdist%2Fdev%2Flucene%2Fpylucene%2F8.8.1-rc1%2F&data=04%7C01%7Cmarc.jeurissen%40uantwerpen.be%7C20ba06c7ec0046c7863f08d8dd23e66b%7C792e08fb2d544a8eaf72202548136ef6%7C0%7C0%7C637502494126459957%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=e0w9pmUGU8PhWPkTV0gm%2B2eGKlLvIaV8wM6GlDyAy9U%3D&reserved=0

PyLucene 8.8.1 is built with JCC 3.9, included in these release artifacts.

JCC 3.9 supports Python 3.3 up to Python 3.9 (in addition to Python 2.3+).
PyLucene may be built with Python 2 or Python 3.

Please vote to release these artifacts as PyLucene 8.8.1.
Anyone interested in this release can and should vote !

Thanks !

Andi..

ps: the KEYS file for PyLucene release signing is at:
https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdist.apache.org%2Frepos%2Fdist%2Frelease%2Flucene%2Fpylucene%2FKEYS&data=04%7C01%7Cmarc.jeurissen%40uantwerpen.be%7C20ba06c7ec0046c7863f08d8dd23e66b%7C792e08fb2d544a8eaf72202548136ef6%7C0%7C0%7C637502494126459957%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=TlLv6eAZxXSlgR8wKB4ipsyVfhYj05tDPP9Q7C%2Fhi1Q%3D&reserved=0
https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdist.apache.org%2Frepos%2Fdist%2Fdev%2Flucene%2Fpylucene%2FKEYS&data=04%7C01%7Cmarc.jeurissen%40uantwerpen.be%7C20ba06c7ec0046c7863f08d8dd23e66b%7C792e08fb2d544a8eaf72202548136ef6%7C0%7C0%7C637502494126459957%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=A%2B9KMqQMl51zcC9xAcQv4LZ2uLfEgaCBHoep60TlHOk%3D&reserved=0

pps: here is my +1



Re: [VOTE] Release PyLucene 8.9.0

2021-06-20 Thread Marc Jeurissen

+1

On 18/06/2021 3:16, Andi Vajda wrote:
CAUTION: This email originated from outside of the organization. Do 
not click links or open attachments unless you recognize the sender 
and know the content is safe.



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://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdist.apache.org%2Frepos%2Fdist%2Fdev%2Flucene%2Fpylucene%2F8.9.0-rc1%2F&data=04%7C01%7Cmarc.jeurissen%40uantwerpen.be%7C5f5217b7c679435f666408d931f6b21a%7C792e08fb2d544a8eaf72202548136ef6%7C0%7C0%7C637595757887876452%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=9xFR51wuRubZqkrHd328vROTqxN1EUIpQULuPt7iZpA%3D&reserved=0

PyLucene 8.9.0 is built with JCC 3.10, included in these release 
artifacts.


JCC 3.10 supports Python 3.3 up to Python 3.9 (in addition to Python 
2.3+).

PyLucene may be built with Python 2 or Python 3.

Please vote to release these artifacts as PyLucene 8.9.0.
Anyone interested in this release can and should vote !

Thanks !

Andi..

ps: the KEYS file for PyLucene release signing is at:
https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdist.apache.org%2Frepos%2Fdist%2Frelease%2Flucene%2Fpylucene%2FKEYS&data=04%7C01%7Cmarc.jeurissen%40uantwerpen.be%7C5f5217b7c679435f666408d931f6b21a%7C792e08fb2d544a8eaf72202548136ef6%7C0%7C0%7C637595757887876452%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=azuGy8J7gDjYJEXPgiG86bjhPYhzgEh6f40ixss96QA%3D&reserved=0 

https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdist.apache.org%2Frepos%2Fdist%2Fdev%2Flucene%2Fpylucene%2FKEYS&data=04%7C01%7Cmarc.jeurissen%40uantwerpen.be%7C5f5217b7c679435f666408d931f6b21a%7C792e08fb2d544a8eaf72202548136ef6%7C0%7C0%7C637595757887876452%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=CbF8Nb%2F4ZNiUfjtkcw%2FgjktZEsb%2FSsfAizSTHKY4WeE%3D&reserved=0 



pps: here is my +1

--
Signature Marc Jeurissen | UAntwerpen
Met vriendelijke groeten,

Marc Jeurissen

<http://anet.be>
Bibliotheek UAntwerpen
Stadscampus – Ve35.303
Venusstraat 35 – 2000 Antwerpen
marc.jeuris...@uantwerpen.be <mailto:marc.jeuris...@uantwerpen.be>
T +32 3 265 49 71
<http://anet.be>