Skip to content

Commit 6893dd8

Browse files
authored
Fix requirements syntax (#148)
in python 3.10 the current syntax for specifying the version requirements in `install_requires` causes an `packaging._tokenizer.ParserSyntaxError` which is fixed with this commit
1 parent d57ec14 commit 6893dd8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ classifiers = Development Status :: 3 - Alpha
2121
include_package_data = True
2222
zip_safe = True
2323
packages = find:
24-
install_requires = numpy
25-
scikit-learn>="0.24.0"
26-
24+
install_requires =
25+
numpy
26+
scikit-learn>=0.24.0

0 commit comments

Comments
 (0)