Skip to content

Commit

Permalink
update dependencies for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
kPsarakis committed Sep 28, 2023
1 parent 4159ac7 commit 0191c00
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# algorithms
numpy==1.24.3
pandas==2.0.1
numpy==1.26.0
pandas==2.1.1
nltk==3.8.1
anytree==2.8.0
anytree==2.9.0
networkx==3.1
chardet==5.1.0
levenshtein==0.21.0
chardet==5.2.0
levenshtein==0.22.0
PuLP==2.7.0
pyemd==1.0.0
# data loading
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
download_url='https://github.com/delftdata/valentine/archive/refs/tags/v0.1.7.tar.gz',
packages=setuptools.find_packages(exclude=('tests*', 'examples*')),
install_requires=[
'numpy>=1.22,<2.0',
'pandas>=1.3,<2.1',
'numpy>=1.26,<2.0',
'pandas>=2.1,<2.2',
'nltk>=3.6,<4.0',
'anytree>=2.8,<2.9',
'networkx>=2.8,<4.0',
'chardet>=5.0.0,<6.0.0',
'levenshtein>=0.20.7,<1.0',
'PuLP>=2.5.1,<3.0',
'anytree>=2.9,<3.0',
'networkx>=3.1,<4.0',
'chardet>=5.2.0,<6.0.0',
'levenshtein>=0.22,<1.0',
'PuLP>=2.7,<3.0',
'pyemd>=1.0.0,<2.0',
'python-dateutil>=2.8,<3.0'
],
Expand Down

0 comments on commit 0191c00

Please sign in to comment.