From c8eb08a9415b8147f426401d8e75a6da02d37cbb Mon Sep 17 00:00:00 2001 From: lintool Date: Wed, 27 May 2020 15:26:47 -0400 Subject: [PATCH] Release 0.9.3.0 --- README.md | 4 ++-- setup.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index da23b7899..c3dc66cb0 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ A low-effort way to try out Pyserini is to look at our [online notebooks](https: For convenience, we've pre-built a few common indexes, available to download [here](https://git.uwaterloo.ca/jimmylin/anserini-indexes). Pyserini versions adopt the convention of _X.Y.Z.W_, where _X.Y.Z_ tracks the version of Anserini, and _W_ is used to distinguish different releases on the Python end. -The current stable release of Pyserini is [v0.9.2.0](https://pypi.org/project/pyserini/) on PyPI. +The current stable release of Pyserini is [v0.9.3.0](https://pypi.org/project/pyserini/) on PyPI. The current experimental release of Pyserini on TestPyPI is behind the current stable release (i.e., do not use). In general, documentation is kept up to date with the latest code in the repo. @@ -23,7 +23,7 @@ If you're looking to work with the [COVID-19 Open Research Dataset (CORD-19)](ht Install via PyPI ``` -pip install pyserini==0.9.2.0 +pip install pyserini==0.9.3.0 ``` ## Simple Usage diff --git a/setup.py b/setup.py index 9cdd7f3d3..671746442 100644 --- a/setup.py +++ b/setup.py @@ -5,17 +5,17 @@ setuptools.setup( name="pyserini", - version="0.9.2.0", + version="0.9.3.0", author="Jimmy Lin", author_email="jimmylin@uwaterloo.ca", description="Python interface to the Anserini IR toolkit built on Lucene", long_description=long_description, long_description_content_type="text/markdown", package_data={"pyserini": [ - "resources/jars/anserini-0.9.2-fatjar.jar", + "resources/jars/anserini-0.9.3-fatjar.jar", ]}, url="https://github.com/castorini/pyserini", - install_requires=['Cython', 'pyjnius'], + install_requires=['Cython', 'pyjnius', 'numpy', 'scipy', 'scikit-learn'], packages=setuptools.find_packages(), classifiers=[ "Programming Language :: Python :: 3",