From 25763ac93e794e5a7115a6662032e71695f5a3bf Mon Sep 17 00:00:00 2001 From: Fritz Obermeyer Date: Wed, 23 Oct 2019 13:37:13 -0700 Subject: [PATCH] Add pytest as core dependency (#290) --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 4e87b9cf6..7f55f7fe1 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name='funsor', - version='0.1.1', + version='0.1.2', description='A tensor-like library for functions and distributions', packages=find_packages(include=['funsor', 'funsor.*']), url='https://github.com/pyro-ppl/funsor', @@ -29,27 +29,27 @@ }, author='Uber AI Labs', author_email='fritzo@uber.com', + python_requires=">=3.6", install_requires=[ 'multipledispatch', 'numpy>=1.7', 'opt_einsum>=2.3.2', 'pyro-ppl>=0.5', + 'pytest>=4.1', 'torch>=1.3.0', ], extras_require={ 'test': [ 'flake8', 'pandas', - 'pytest>=4.1', + 'pyro-api>=0.1', 'pytest-xdist==1.27.0', 'torchvision==0.2.1', - 'pyro-api>=0.1', ], 'dev': [ 'flake8', 'isort', 'pandas', - 'pytest>=4.1', 'pytest-xdist==1.27.0', 'sphinx>=2.0', 'sphinx_rtd_theme',