Commit 6181d07855f9edc6a4b60d09e95095cdcd925e99

Authored by Miguel Barão
1 parent b798bba2
Exists in dev

update setup.py to latest package versions

sqlalchemy 2.0.0.rc2
tornado 6.2
bcrypt 4.0.1
Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
@@ -20,12 +20,12 @@ setup( @@ -20,12 +20,12 @@ setup(
20 include_package_data=True, # install files from MANIFEST.in 20 include_package_data=True, # install files from MANIFEST.in
21 python_requires='>=3.9.*', 21 python_requires='>=3.9.*',
22 install_requires=[ 22 install_requires=[
23 - 'tornado>=6.0',  
24 - 'mistune>=3', 23 + 'tornado>=6.2',
  24 + 'mistune>=3.0.0rc4',
25 'pyyaml>=5.1', 25 'pyyaml>=5.1',
26 'pygments', 26 'pygments',
27 - 'sqlalchemy>=1.4',  
28 - 'bcrypt>=3.1', 27 + 'sqlalchemy>=2.0.0rc2',
  28 + 'bcrypt>=4.0.1',
29 'networkx>=2.4' 29 'networkx>=2.4'
30 ], 30 ],
31 entry_points={ 31 entry_points={