Merge pull request #222 from mailgun/maxim/develop

PIP-1409: Remove version pins from setup.py [python3]
This commit is contained in:
Maxim Vladimirskiy
2021-11-11 16:29:30 +03:00
committed by GitHub
3 changed files with 9 additions and 9 deletions

View File

@@ -6,6 +6,6 @@ joblib
lxml>=2.3.3
numpy
regex>=1
scikit-learn==0.24.1 # pickled versions of classifier, else rebuild
scikit-learn>=1.0.0
scipy
six>=1.10.0

View File

@@ -29,7 +29,7 @@ class InstallCommand(install):
setup(name='talon',
version='1.4.8',
version='1.4.9',
description=("Mailgun library "
"to extract message quotations and signatures."),
long_description=open("README.rst").read(),
@@ -44,21 +44,21 @@ setup(name='talon',
include_package_data=True,
zip_safe=True,
install_requires=[
"lxml>=2.3.3",
"regex>=1",
"lxml",
"regex",
"numpy",
"scipy",
"scikit-learn==0.24.1", # pickled versions of classifier, else rebuild
"chardet>=1.0.1",
"cchardet>=0.3.5",
"scikit-learn>=1.0.0",
"chardet",
"cchardet",
"cssselect",
"six>=1.10.0",
"six",
"html5lib",
"joblib",
],
tests_require=[
"mock",
"nose>=1.2.1",
"nose",
"coverage"
]
)

Binary file not shown.