From 4b091b85680d9359f39c9c88526f8a3fa9b8a459 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 13 Dec 2024 10:27:42 -0500 Subject: [PATCH] setup: bumped dependencies' versions --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 90b7d7a0..10ea89ee 100644 --- a/setup.py +++ b/setup.py @@ -95,14 +95,14 @@ def get_package_data(): long_description=long_description, long_description_content_type='text/markdown', url='https://sites.google.com/a/umich.edu/the-schmidt-lab/home', - python_requires='>=3.10', + python_requires='>=3.11', install_requires=[ 'biopython~=1.80', 'defusedxml~=0.7', - 'Django~=3.2.0', + 'Django~=4.2.0', 'django-crispy-forms~=1.14', 'django-extensions~=3.2.0', - 'django-filter>=22.1', # the debian pkg spells python3-django-filters! + 'django-filter~=23.0', # the debian pkg spells python3-django-filters! 'djangorestframework~=3.14.0', 'django-tables2~=2.4.0', 'matplotlib~=3.6.0', @@ -110,7 +110,7 @@ def get_package_data(): 'psycopg2~=2.9.0', 'xlrd~=1.2', 'zipstream~=1.1.0', - 'pygraphviz', + 'pygraphviz~=1.0', ], packages=setuptools.find_packages(), package_data=get_package_data(),