diff --git a/README.md b/README.md index 41e933e..fdcf111 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![codecov](https://codecov.io/gh/delftdata/valentine/branch/master/graph/badge.svg?token=4QR0X315CL)](https://codecov.io/gh/delftdata/valentine) [![PyPI version](https://badge.fury.io/py/valentine.svg)](https://badge.fury.io/py/valentine) ![PyPI - Downloads](https://img.shields.io/pypi/dm/valentine) -[![Python 3.8+](https://img.shields.io/badge/python-3.8|3.9|3.10|3.11-blue.svg)](https://www.python.org/downloads/release/python-380/) +[![Python 3.8+](https://img.shields.io/badge/python-3.8|3.9|3.10|3.11|3.12-blue.svg)](https://www.python.org/downloads/release/python-380/) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/85cfebfc9c6a43359c5b2e56a5fdf3a3)](https://app.codacy.com/gh/delftdata/valentine/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade) A python package for capturing potential relationships among columns of different tabular datasets, which are given in the form of pandas DataFrames. Valentine is based on [Valentine: Evaluating Matching Techniques for Dataset Discovery](https://ieeexplore.ieee.org/abstract/document/9458921) @@ -18,7 +18,7 @@ The original experimental suite version of Valentine, as first published for the ## Installation instructions ### Requirements -* *Python* >=3.8,<3.12 +* *Python* >=3.8,<3.13 * *Java*: For the Coma matcher it is required to have java (jre) installed To install Valentine simply run: diff --git a/requirements.txt b/requirements.txt index 5ce7041..bce155d 100755 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ numpy==1.26.0 pandas==2.1.1 nltk==3.8.1 -anytree==2.9.0 +anytree==2.10.0 networkx==3.1 chardet==5.2.0 jellyfish==1.0.1 diff --git a/setup.py b/setup.py index 417b639..1eaf733 100755 --- a/setup.py +++ b/setup.py @@ -9,6 +9,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Operating System :: POSIX", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", @@ -16,7 +17,7 @@ setuptools.setup( name='valentine', - version='0.1.7', + version='0.1.8', description='Valentine Matcher', classifiers=classifiers, license_files=('LICENSE',), @@ -25,7 +26,7 @@ maintainer='Delft Data', maintainer_email='delftdatasystems@gmail.com', url='https://delftdata.github.io/valentine/', - download_url='https://github.com/delftdata/valentine/archive/refs/tags/v0.1.7.tar.gz', + download_url='https://github.com/delftdata/valentine/archive/refs/tags/v0.1.8.tar.gz', packages=setuptools.find_packages(exclude=('tests*', 'examples*')), install_requires=[ 'setuptools',