remove pandas dependency for tests

Tests do not require pandas but setup.py was still listing it.
This commit is contained in:
Oliver Beckstein
2020-06-25 17:42:25 -07:00
parent 58b6e652c6
commit aa68e3e6ce

View File

@@ -56,6 +56,6 @@ See http://propka.org/ for the PROPKA web server.
entry_points={'console_scripts': ['propka3 = propka.run:main', ]}, entry_points={'console_scripts': ['propka3 = propka.run:main', ]},
zip_safe=True, zip_safe=True,
python_requires='>=3.6', python_requires='>=3.6',
tests_require=["pandas", "numpy", "pytest"], tests_require=["numpy", "pytest"],
test_suite="tests", test_suite="tests",
) )