Skip to content

Commit

Permalink
fix: dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
percevalw committed Aug 7, 2023
1 parent 5e85f79 commit 17ea5c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -e '.[dev,docs,setup]'
pip install -e '.[dev,setup]'
- name: Test with Pytest on Python ${{ matrix.python-version }}
env:
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ dependencies = [
"rich>=12.0.0",
"scikit-learn>=1.0.0",
"spacy>=3.1,<3.5.0",
"thinc>=8.0.14,<8.1.11",
"thinc>=8.0.17",
"tqdm",
"umls-downloader>=0.1.1",
"numpy>=1.15.0,<1.23.2; python_version<'3.8'",
"numpy>=1.15.0; python_version>='3.8'",
"pandas>=1.1.0,<2.0.0; python_version<'3.8'",
"pandas>=1.4.0,<2.0.0; python_version>='3.8'",
"typing_extensions<4.6.0" # https://github.com/explosion/spaCy/issues/12659
"typing_extensions<4.6.0,>=4.0.0; python_version>='3.8'", # https://github.com/explosion/spaCy/issues/12659
"typing_extensions>=4.0.0; python_version<'3.8'"
]
[project.optional-dependencies]
dev = [
Expand All @@ -39,7 +40,7 @@ dev = [
"pytest>=7.1.0,<8.0.0",
"pytest-cov>=3.0.0,<4.0.0",
"pytest-html>=3.1.1,<4.0.0",
"torch>=1.0.0,<1.13.0",
"torch>=1.0.0",
]
setup = [
"mlconjug3<3.9.0",
Expand Down

0 comments on commit 17ea5c6

Please sign in to comment.