From b8bbe96da790ab2be2fe201ca2488e50b0be7d7e Mon Sep 17 00:00:00 2001 From: Beckhoelter Date: Tue, 26 Jun 2018 12:43:18 +0200 Subject: [PATCH 1/3] add min version of networkx #6 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0551e64..7009445 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ author_email='mfuchs@eonerc.rwth-aachen.de', license='MIT License', packages=setuptools.find_packages(), - install_requires=['pytest', 'networkx', 'numpy', 'pandas', + install_requires=['pytest', 'networkx>=2', 'numpy', 'pandas', 'shapely', 'pyproj', 'matplotlib', 'nose', 'pytest-mpl', ], classifiers=("Programming Language :: Python :: 3", ), From 2ee7c6fe419132bb04aa78ec719c1d6cf83b0b6c Mon Sep 17 00:00:00 2001 From: marcusfuchs Date: Tue, 3 Jul 2018 13:22:35 +0200 Subject: [PATCH 2/3] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7009445..7219a4e 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ author_email='mfuchs@eonerc.rwth-aachen.de', license='MIT License', packages=setuptools.find_packages(), - install_requires=['pytest', 'networkx>=2', 'numpy', 'pandas', + install_requires=['pytest', 'networkx>=2.1', 'numpy', 'pandas', 'shapely', 'pyproj', 'matplotlib', 'nose', 'pytest-mpl', ], classifiers=("Programming Language :: Python :: 3", ), From 56c36e5bff66c9889adf6d3ac50f98689dbbc400 Mon Sep 17 00:00:00 2001 From: marcusfuchs Date: Tue, 3 Jul 2018 13:23:10 +0200 Subject: [PATCH 3/3] Update requirements.txt --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 029cce6..8e3ff1e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,9 @@ pytest -networkx +networkx>=2.1 numpy pandas shapely pyproj matplotlib nose -pytest-mpl \ No newline at end of file +pytest-mpl