Skip to content

Commit

Permalink
Updating version number
Browse files Browse the repository at this point in the history
  • Loading branch information
tkralphs committed Mar 26, 2019
1 parent d66ef92 commit 0627efb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import setuptools

setup(name='coinor.grumpy',
version='0.85.0',
version='0.9.0',
description='Graphics for Understanding Mathematical Programming (GrUMPy)',
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.
Expand All @@ -19,11 +19,11 @@
https://tkralphs.github.io/GrUMPy
''',
author='Aykut Bulut, Ted Ralphs',
author_email='{aykut,ted}@lehigh.edu',
author_email='[email protected]',
license='Eclipse Public License',
url='https://github.com/tkralphs/GrUMPy/',
namespace_packages=['coinor'],
packages=['coinor.grumpy','coinor.grumpy.examples','coinor'],
package_dir = {'coinor': 'src'},
install_requires=['coinor.gimpy>=1.3.0', 'pulp']
install_requires=['coinor.gimpy>=2.0.0', 'pulp']
)
2 changes: 1 addition & 1 deletion src/grumpy/polyhedron2D.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from builtins import object
from past.utils import old_div
import numpy as np
from polyhedron import Vrep, Hrep
from pypolyhedron.polyhedron import Vrep, Hrep
import matplotlib.pyplot as plt
import matplotlib.lines as lines
from math import ceil, floor
Expand Down

0 comments on commit 0627efb

Please sign in to comment.