Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stanfordnlp/stanza.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Bauer <horatio@gmail.com>2022-09-14 21:39:12 +0300
committerJohn Bauer <horatio@gmail.com>2022-09-15 01:21:18 +0300
commit8c1d9d80e2e12729f60f05b81e88e113fbdd3482 (patch)
treeb9d9f20c4792b9c649733e02be1286e43d4de011 /setup.py
parentba3f64d5f571b1dc70121551364fc89d103ca1cd (diff)
Stop requiring pytest for all installations. Instead we hopefully can hopefully have the test suite install the extra_requires
https://github.com/stanfordnlp/stanza/issues/1120 Install 'test' from setup.py as part of running the unit tests
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 4a3e0576..042e4502 100644
--- a/setup.py
+++ b/setup.py
@@ -76,7 +76,7 @@ setup(
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
- install_requires=['emoji', 'numpy', 'protobuf', 'requests', 'six', 'torch>=1.3.0', 'tqdm', 'pytest'],
+ install_requires=['emoji', 'numpy', 'protobuf', 'requests', 'six', 'torch>=1.3.0', 'tqdm'],
# List required Python versions
python_requires='>=3.6',