Skip to content

Commit

Permalink
Merge pull request #56 from allenai/python-310
Browse files Browse the repository at this point in the history
Support python 3.10
  • Loading branch information
aryehgigi committed Nov 2, 2022
2 parents 66d8856 + 31e69cd commit 6ba732a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
spacy~=3.0.0
pytest==5.3.5
spacy>=3.0.0,<=4.0.0
pytest~=7.2.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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',
)

0 comments on commit 6ba732a

Please sign in to comment.