diff --git a/README.md b/README.md index d007ef2..6eeffeb 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ This project is part of a wider project series, related to BART: ## Installation -pyBART requires Python 3.7 or later. The preferred way to install pyBART is via `pip`. Just run `pip install pybart-nlp` in your Python environment and you're good to go! +pyBART requires Python 3.7 or later (yes including up to 3.11). The preferred way to install pyBART is via `pip`. Just run `pip install pybart-nlp` in your Python environment and you're good to go! If you want to use pyBART as a spaCy pipeline component, then you should install as well: (1) the spaCy package and (2) a spaCy-model based on UD-format (which we happen to provide (details are [here](https://github.com/allenai/ud_spacy_model)) ```bash diff --git a/requirements.txt b/requirements.txt index 060ebf0..d271bcb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -spacy~=3.0.0 -pytest==5.3.5 +spacy>=3.0.0,<=4.0.0 +pytest~=7.2.0 diff --git a/setup.py b/setup.py index 955a67b..ac5bf11 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="pybart-nlp", - version="3.3.4", + version="3.4.0", author="Aryeh Tiktinsky", author_email="aryehgigi@gmail.com", description="python converter from UD-tree to BART-graph representations", @@ -18,5 +18,5 @@ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", ], - python_requires='>=3.7, <3.9', + python_requires='>=3.7, <3.12', )