3 Commits

Author SHA1 Message Date
Maxim Vladimirskiy
1a5548f171 Merge pull request #222 from mailgun/maxim/develop
PIP-1409: Remove version pins from setup.py [python3]
2021-11-11 16:29:30 +03:00
Maxim Vladimirskiy
53c49b9121 Remove version pins from setup.py 2021-11-11 15:36:50 +03:00
Matt Dietz
bd50872043 Merge pull request #217 from mailgun/dietz/REP-1030
Drops Python 2 support [python3]
2021-06-15 09:46:29 -05:00
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.