Update to latest version of pytest and dependencies (#9087)

* Update to latest version of pytest and dependencies

* Fix bug in installation tests
This commit is contained in:
Adam J. Stewart
2018-08-25 14:12:46 -05:00
committed by GitHub
parent 3c292de6bd
commit cc01e89d6b
14 changed files with 111 additions and 36 deletions

View File

@@ -29,10 +29,13 @@ class PyMoreItertools(PythonPackage):
"""Additions to the standard Python itertools package."""
homepage = "https://github.com/erikrose/more-itertools"
url = "https://pypi.io/packages/source/m/more-itertools/more-itertools-4.1.0.tar.gz"
url = "https://pypi.io/packages/source/m/more-itertools/more-itertools-4.3.0.tar.gz"
import_modules = ['more_itertools', 'more_itertools.tests']
version('4.3.0', '42157ef9b677bdf6d3609ed6eadcbd4a')
version('4.1.0', '246f46686d95879fbad37855c115dc52')
version('2.2', 'b8d328a33f966bf40bb829bcf8da35ce')
version('2.2', 'b8d328a33f966bf40bb829bcf8da35ce')
depends_on('py-setuptools', type='build')
depends_on('py-six@1.0.0:1.999', type=('build', 'run'))