Skip to content

Commit

Permalink
Update tests.yml to use new punkt file from NLTK
Browse files Browse the repository at this point in the history
Context: nltk/nltk#3293

punkt.tab was removed due to a security vulnerability

See also INCATools/ontology-access-kit#802
  • Loading branch information
cmungall committed Aug 29, 2024
1 parent a93542d commit 3b92101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install .[test,ui]
python -c "import nltk; nltk.download('punkt'); nltk.download('stopwords')"
python -c "import nltk; nltk.download('punkt_tab'); nltk.download('stopwords')"
python -m adeft.download
- name: Tests
run: |
Expand Down

0 comments on commit 3b92101

Please sign in to comment.