Skip to content

Commit

Permalink
Fix requirements syntax (#148)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Luthaf authored Jan 6, 2023
1 parent d57ec14 commit 6893dd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ classifiers = Development Status :: 3 - Alpha
include_package_data = True
zip_safe = True
packages = find:
install_requires = numpy
scikit-learn>="0.24.0"

install_requires =
numpy
scikit-learn>=0.24.0

0 comments on commit 6893dd8

Please sign in to comment.