Skip to content

Commit

Permalink
Set minimum version for pyparsing
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisburr committed Feb 23, 2018
1 parent 71cf052 commit 183de88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion formulate/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
]


__version__ = '0.0.5'
__version__ = '0.0.6'
version = __version__
version_info = __version__.split('.')
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from __future__ import print_function

import os.path
import sys

from setuptools import find_packages
from setuptools import setup
Expand All @@ -32,7 +31,7 @@ def get_version():
download_url='https://github.com/scikit-hep/formulate/releases',
license='BSD 3-clause',
test_suite='tests',
install_requires=['numpy', 'pyparsing', 'colorlog', 'aenum', 'scipy'],
install_requires=['numpy', 'pyparsing>=2.1.9', 'colorlog', 'aenum', 'scipy'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
classifiers=[
Expand Down

0 comments on commit 183de88

Please sign in to comment.