Skip to content

Commit

Permalink
fix: bring back lowest env in Tox/CI
Browse files Browse the repository at this point in the history
Adds back the "lowest" env in Tox/CI to ensure support in the lowest supported Python + NLTK versions
  • Loading branch information
johnfraney committed Jan 13, 2025
1 parent 3dd52b4 commit a716fc1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
include:
- { name: "3.9", python: "3.9", tox: py39 }
- { name: "3.13", python: "3.13", tox: py313 }
- { name: "lowest", python: "3.9", tox: py39-lowest }
steps:
- uses: actions/[email protected]
- uses: actions/setup-python@v5
Expand Down
3 changes: 3 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
envlist =
lint
py{39,310,311,312,313}
py39-lowest

[testenv]
extras = tests
deps =
lowest: nltk==3.9
commands = pytest {posargs}


Expand Down

0 comments on commit a716fc1

Please sign in to comment.