Skip to content

Commit dc59658

Browse files
authored
Merge pull request #10 from HaaLeo/bugfix/aco-plotting
Change dependency to fix ACO algorithm
2 parents eff8225 + 6935e70 commit dc59658

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tsplib95>=0.3.2, <1.0.0
2-
matplotlib>=3.0.2, <4.0.0
2+
matplotlib<3.2.0
33
networkx==2.1
44
numpy>=1.15.4, <2.0.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
license='BSD 3-Clause License',
3030
install_requires=[
3131
'tsplib95>=0.3.2, <1.0.0',
32-
'matplotlib>=3.0.2, <4.0.0',
32+
'matplotlib<3.2.0', # Otherwise networkx throws an exception
3333
'networkx==2.1', # Required by tsplib95 0.3.2
3434
'numpy>=1.15.4, <2.0.0'
3535
],

0 commit comments

Comments
 (0)