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 lxml>=2.3.3
numpy numpy
regex>=1 regex>=1
scikit-learn==0.24.1 # pickled versions of classifier, else rebuild scikit-learn>=1.0.0
scipy scipy
six>=1.10.0 six>=1.10.0

View File

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

Binary file not shown.