Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use ~= operator to declare dependencies #560

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 14 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,22 @@ classifiers =
[options]
packages = find:
include_package_data = True
# NOTE: we cannot use ~= operator for datalabs for now since transitive dependencies
# introduced cause different types of issues across Python versions in CI.
install_requires =
datalabs>=0.4.9
eaas>=0.3.9
lexicalrichness!=0.1.6
matplotlib
nltk>=3.2
numpy
sacrebleu
scikit-learn
scipy
seqeval
spacy
tqdm
wheel
eaas~=0.3.9
lexicalrichness~=0.2.0
matplotlib~=3.6.1
nltk~=3.7
numpy~=1.23.4
sacrebleu~=2.2.1
scikit-learn~=1.1.2
scipy~=1.9.2
seqeval~=1.2.2
spacy~=3.4.1
tqdm~=4.64.1
wheel~=0.37.1

[options.extras_require]
dev = pre-commit
Expand Down