Skip to content

Commit 0627efb

Browse files
committed
Updating version number
1 parent d66ef92 commit 0627efb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import setuptools
55

66
setup(name='coinor.grumpy',
7-
version='0.85.0',
7+
version='0.9.0',
88
description='Graphics for Understanding Mathematical Programming (GrUMPy)',
99
long_description='''GrUMPy is a class for visualizing various algorithm used in solving discrete optimization problem. It has a class for dynamically generating and visualizing branch-and-bound trees that is derived from the GiMPy graph class. Using the branch-and-bound class, a user can visualize the branch-and-bound process in a number of different ways either by building the tree dynamically through direct calls to Python from the solver or by piping the output of an instrumented solver to GrUMPy for parsing. The branch-and-bound class also includes a pure Python implementation of branch and bound that is targeted at educational use.
1010
@@ -19,11 +19,11 @@
1919
https://tkralphs.github.io/GrUMPy
2020
''',
2121
author='Aykut Bulut, Ted Ralphs',
22-
author_email='{aykut,ted}@lehigh.edu',
22+
author_email='[email protected]',
2323
license='Eclipse Public License',
2424
url='https://github.com/tkralphs/GrUMPy/',
2525
namespace_packages=['coinor'],
2626
packages=['coinor.grumpy','coinor.grumpy.examples','coinor'],
2727
package_dir = {'coinor': 'src'},
28-
install_requires=['coinor.gimpy>=1.3.0', 'pulp']
28+
install_requires=['coinor.gimpy>=2.0.0', 'pulp']
2929
)

src/grumpy/polyhedron2D.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from builtins import object
55
from past.utils import old_div
66
import numpy as np
7-
from polyhedron import Vrep, Hrep
7+
from pypolyhedron.polyhedron import Vrep, Hrep
88
import matplotlib.pyplot as plt
99
import matplotlib.lines as lines
1010
from math import ceil, floor

0 commit comments

Comments
 (0)