-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* replace the scipy dependency for the quantile function with the builtin one * add support for python 3.10 * prepare for new release
- Loading branch information
Showing
6 changed files
with
17 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,19 +6,18 @@ | |
|
||
setuptools.setup( | ||
name='valentine', | ||
version='0.1.1', | ||
version='0.1.2', | ||
description='Valentine Matcher', | ||
license_files=('LICENSE',), | ||
author='Delft Data', | ||
author_email='[email protected]', | ||
maintainer='Delft Data', | ||
maintainer_email='[email protected]', | ||
url='https://delftdata.github.io/valentine/', | ||
download_url='https://github.com/delftdata/valentine/archive/refs/tags/v0.1.1.tar.gz', | ||
packages=setuptools.find_packages(exclude=('tests*',)), | ||
download_url='https://github.com/delftdata/valentine/archive/refs/tags/v0.1.2.tar.gz', | ||
packages=setuptools.find_packages(exclude=('tests*', 'examples*')), | ||
install_requires=[ | ||
'numpy>=1.21,<2.0', | ||
'scipy>=1.7,<1.8', | ||
'pandas>=1.3,<1.4', | ||
'nltk>=3.6,<3.7', | ||
'snakecase>=1.0,<2.0', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters