{ "info": { "author": "Anthony Shaw", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Testing", "Topic :: Utilities" ], "description": "tox-pipenv\n==========\n\n.. image:: https://img.shields.io/pypi/v/tox-pipenv.svg\n :target: https://pypi.python.org/pypi/tox-pipenv\n\n.. image:: https://img.shields.io/travis/tox-dev/tox-pipenv.svg\n :target: https://travis-ci.org/tox-dev/tox-pipenv\n\n.. image:: https://codecov.io/gh/tox-dev/tox-pipenv/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/tox-dev/tox-pipenv\n\n.. image:: https://pyup.io/repos/github/tox-dev/tox-pipenv/shield.svg\n :target: https://pyup.io/repos/github/tox-dev/tox-pipenv/\n :alt: Updates\n\n.. image:: https://pyup.io/repos/github/tox-dev/tox-pipenv/python-3-shield.svg\n :target: https://pyup.io/repos/github/tox-dev/tox-pipenv/\n :alt: Python 3\n\nA tox plugin to replace the default use of virtualenv with Pipenv.\n\nThis is a convenient way to retain your use of Pipenv, whilst testing multiple versions of Python.\n\nInstallation\n------------\n\n.. code-block:: bash\n\n pip install tox-pipenv\n\nOr, \n\n.. code-block:: bash\n\n pipenv install tox-pipenv \n\nCreating virtual environments\n-----------------------------\n\nWith this plugin, tox will use `pipenv --python {python binary}` as given to the tox interpreter for each python path.\n\nIf you already have virtual environments cached with tox, use the --recreate flag to recreate them with pipenv.\n\nNote: tox will pass the --site-packages flag to pipenv if this is configured in your tox config.\n\nThe Pipfile will exist in .tox/{env}/Pipfile as well as Pipfile.lock\n\nInstalling requirements\n-----------------------\n\nThe installation of requirements from your tox config will be passed to pipenv install for installation into the virtual \nenvironment. This replaces the use of pip within tox.\n\n``requirements.txt`` files will also be parsed by Pipenv and used for each test environment\n\nExecuting tests\n---------------\n\nEach of the commands in your testenv configuration will be passed to pipenv to execute within the pipenv virtual environment\n\nExample tox.ini\n---------------\n\nThis simple example will test against Python 2.7 and 3.6 using pytest to execute the tests.\n\n.. code-block:: \n\n [tox]\n envlist = py27, py36\n\n [testenv]\n deps = \n pytest\n pytest-mock\n commands = python -m pytest test/\n\n\nFrequently asked questions\n--------------------------\n\nWhere to install\n~~~~~~~~~~~~~~~~\n\nTox-Pipenv should be installed in the same environment as Tox, whether that is in a virtualenvironment, system environment or user environment. Tox-Pipenv depends on\nTox 3.0 or newer.\n\nIs user expected to create `Pipfile` and `Pipfile.lock` before executing `tox` with this plugin?\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nYes, although if you are migrating from a requirements.txt to a Pipfile, you can use Pipenv to create the Pipfile for you.\n\nIs `Pipfile.lock` expected to be under source control?\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nAccording to `pipenv` documenation, `Pipfile.lock` is not recommended under source control if it is going to be used under multiple Python versions.\n\nWhat is the role of `requirements.txt` file?\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nOften, `tox` users use `requirements.txt` which is then referenced from within `tox.ini` file as deps. Pipenv will automatically install any packages listed in \n`requirements.txt` for each virtual environment that Tox creates.\n\nIs `tox.ini` `deps` section really in control?\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nNo, this is a known limitation. \n\n\nAuthors\n-------\n\n* Anthony Shaw\n* Omer Katz\n\nRelease notes\n=============\n\n1.9.0 (2019-01-27)\n------------------\n\n* Update: Added support for tox 3.7.0 (#60)\n\n1.8.0 (2018-10-30)\n------------------\n\nBugfix : Tox-pipenv would skip the installation of Pipfile if the user had not specified any additional deps in tox.ini (#53)\n\n1.7.0 (2018-10-30)\n------------------\n\n* Bugfix : Support for Tox 3.0+\n* Bugfix : Fixed API in Tox 3.4.0+\n* Bugfix : Removed pinned version which fixes pipenv issue (#50)\n\n1.6.0 (2018-07-04)\n------------------\n\n* Bugfix : Tox would fail when executed twice if usedevelop was set to True, reported by @ashwinvis #46\n* Bugfix : Any additional dependencies specified in `deps` within tox.ini would be written to the root Pipfile. A temporary Pipfile is created\n for each virtualenv now, which is a clone of the root Pipfile\n\n1.5.0 (2018-07-03)\n------------------\n\n* Update : Update tox to 3.0.0\n* Feature : Tox report now uses pipenv instead of pip freeze\n* Bugfix : Fixed issue on newer versions of pipenv raising error \"AttributeError: 'Project' object has no attribute 'pipfile_sources'\" (#41)\n\n1.4.1 (2018-03-15)\n------------------\n\n* Removed test virtualenv from package, meaning distribution was 18MB, should be 15Kb #38\n\n1.4.0 (2018-03-08)\n------------------\n\n* Bugfix : Fixed error \"LocalPath object has no attribute endswith\"\n* Bugfix : Fixed error \"Cannot run tox for the first time with this plugin installed\"\n\n1.3.0 (2018-03-03)\n------------------\n\n* Bugfix : fixed issue when Pathlib.Path occured instead of string\n* Update : updated pipenv to 11.0.1\n\n1.2.1 (2018-01-08)\n------------------\n\n* Added documentation and fixed pypi build\n\n1.2.0 (2018-01-08)\n------------------\n\n* Virtual environments are now correctly stored in .tox//.venv\n* Packages will be reported by pipenv graph after installation. Pip freeze is still being run, downstream PR raised in tox\n* Plugin should not accidentally remove host virtualenv binaries\n\n1.1.0 (2017-12-30)\n------------------\n\n* Use Pipenv install --dev as the default installation command\n\n1.0.0 (2017-12-22)\n------------------\n\n* Support for creation and recreation of virtual environments using Pipenv\n* Isolation of Pipfile within the tox directory\n* Support for installation of tox-specified packages in Pipenv\n* Support for execution of test commands within a Pipenv virtual env\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/tox-dev/tox-pipenv", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "tox-pipenv", "package_url": "https://pypi.org/project/tox-pipenv/", "platform": "unix", "project_url": "https://pypi.org/project/tox-pipenv/", "project_urls": { "Homepage": "https://github.com/tox-dev/tox-pipenv" }, "release_url": "https://pypi.org/project/tox-pipenv/1.9.0/", "requires_dist": [ "tox (>=3.0.0)", "pipenv (>=2018.05.18)" ], "requires_python": "", "summary": "A pipenv plugin for tox", "version": "1.9.0" }, "last_serial": 4744999, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "59ed5fc0a9ede63731a9bdc3bd4350d9", "sha256": "d3b3ebfe6fa64e51042676d60759c350d3248b89a0885c4a83f79f47ddb8a1f6" }, "downloads": -1, "filename": "tox_pipenv-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "59ed5fc0a9ede63731a9bdc3bd4350d9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5096, "upload_time": "2017-12-20T22:59:52", "url": "https://files.pythonhosted.org/packages/e0/73/ba160681f7654522e855f3a0498b503dae0401b6a146c0587a27b9aebefa/tox_pipenv-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "671442edc8bf4c3919918514c701e6ea", "sha256": "af3736a257a94c004f6eeba26ab214d1b606c076e4524efde702ab0a8b1d568d" }, "downloads": -1, "filename": "tox-pipenv-1.0.0.tar.gz", "has_sig": false, "md5_digest": "671442edc8bf4c3919918514c701e6ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3275, "upload_time": "2017-12-20T22:59:55", "url": "https://files.pythonhosted.org/packages/18/15/acc93fd601797cf73bc6d21d27bcd986e6ca774f61d64700a4b3546aa258/tox-pipenv-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "cec0b73404312dbba9e869f7b3c9f695", "sha256": "1126a0e869ac85309263d2c994512d7c76f003621ea63c6d79384fe1b2d73aff" }, "downloads": -1, "filename": "tox_pipenv-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cec0b73404312dbba9e869f7b3c9f695", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5668, "upload_time": "2017-12-29T23:12:23", "url": "https://files.pythonhosted.org/packages/4c/9f/e7754fc12a14d4b917e7f944af1d91a09a3aa518a2f418e4787bf7a31863/tox_pipenv-1.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "562007530fd3d63342c26c250c1ea755", "sha256": "81009000f70529f62512a8e5538050b664e4340ecb6f8f96ec08aacea808f117" }, "downloads": -1, "filename": "tox-pipenv-1.1.0.tar.gz", "has_sig": false, "md5_digest": "562007530fd3d63342c26c250c1ea755", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3632, "upload_time": "2017-12-29T23:12:25", "url": "https://files.pythonhosted.org/packages/8b/10/412a075252f4eefae78461912cf7416153dcf40e2df062b1d8da50689af0/tox-pipenv-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "e4dbee51a2b93701cf395b5219699ed4", "sha256": "beabb209b55f203a620842c0a0c51011bb4c4155d21174944349b49939905b6d" }, "downloads": -1, "filename": "tox_pipenv-1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e4dbee51a2b93701cf395b5219699ed4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6238, "upload_time": "2018-01-08T03:01:21", "url": "https://files.pythonhosted.org/packages/38/9f/b78a5ebfff5bf85c734b09a3a61e6bedd483affbf193191e0a2bb65deabf/tox_pipenv-1.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26e3672f3dba6c6419e45c59d96cde6a", "sha256": "137c2e82ce08b88853d94b128cd4e8e8b6982b0ff62d0bbe67b4e88885243577" }, "downloads": -1, "filename": "tox-pipenv-1.2.0.tar.gz", "has_sig": false, "md5_digest": "26e3672f3dba6c6419e45c59d96cde6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4028, "upload_time": "2018-01-08T03:01:23", "url": "https://files.pythonhosted.org/packages/e2/16/77740861a2c74982715983577ec0718504cb897624689c56840c9c1c1e01/tox-pipenv-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "063d10045967059f13cafaa8015d48cf", "sha256": "d2fd7ea04aef8549d0689036e55fb11b1b13201295ceabe1363be101cf53b3ee" }, "downloads": -1, "filename": "tox_pipenv-1.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "063d10045967059f13cafaa8015d48cf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6295, "upload_time": "2018-01-08T04:10:32", "url": "https://files.pythonhosted.org/packages/88/5c/27e28cc9a2eb4e4a2f363fb903ee2fb9ea484e0e11647a26b437b5e46fd6/tox_pipenv-1.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c25d6232a99098288e22c3ae3cdc422", "sha256": "e71c111710b1c92ee5b33a6ba31596d70d499667f640752e9ac5e252007dc544" }, "downloads": -1, "filename": "tox-pipenv-1.2.1.tar.gz", "has_sig": false, "md5_digest": "9c25d6232a99098288e22c3ae3cdc422", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14118, "upload_time": "2018-01-08T04:10:33", "url": "https://files.pythonhosted.org/packages/26/36/fb35563eed19e601eec9fa9572a6b609334c8774ec6fbacf2a26b1f70e93/tox-pipenv-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "8f62ca987fd7911d7016cd976a23f248", "sha256": "01dee625ac700e7e515f7c4589a941e774ef3137acd5c072abdfd2ae522197df" }, "downloads": -1, "filename": "tox_pipenv-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8f62ca987fd7911d7016cd976a23f248", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6490, "upload_time": "2018-03-04T23:01:28", "url": "https://files.pythonhosted.org/packages/0c/33/f10a04bbe7b28c38477e8297dfd493d2e2c2aba481e5106e9230ffed7790/tox_pipenv-1.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fe6a9f64b33c6e6209156a0149fe1361", "sha256": "d6529901e4c98750b084cad05b68bdd26d543d08859ea79e515f24d1211f81ff" }, "downloads": -1, "filename": "tox-pipenv-1.3.0.tar.gz", "has_sig": false, "md5_digest": "fe6a9f64b33c6e6209156a0149fe1361", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17969938, "upload_time": "2018-03-04T23:01:56", "url": "https://files.pythonhosted.org/packages/01/71/8fc58c506b39f784eda3aa7b615a57d371e2602d544071f5b002eb65709c/tox-pipenv-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "8ba0bcb1b84547bce4a8f1a5594f5e24", "sha256": "a7044787f3780b3d8e47bd45a6b3371e0e0ab02a77c7ca33788f7532c3ebd49f" }, "downloads": -1, "filename": "tox_pipenv-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8ba0bcb1b84547bce4a8f1a5594f5e24", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6727, "upload_time": "2018-03-06T02:18:46", "url": "https://files.pythonhosted.org/packages/f0/7c/1d1b8e1f4f855c9642d772629a99dd46732ed2bd2fb594e77859a134abd0/tox_pipenv-1.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0a8035e2841c13b8744787623f76a89d", "sha256": "8cd5f588f91e67fb33f85f4da789a7bb0060f709e79cc1203e19de08209e56bf" }, "downloads": -1, "filename": "tox-pipenv-1.4.0.tar.gz", "has_sig": false, "md5_digest": "0a8035e2841c13b8744787623f76a89d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17970558, "upload_time": "2018-03-06T02:19:14", "url": "https://files.pythonhosted.org/packages/a3/f0/e859ae9325fc0d2f11c51e773fe499be8120218da023a8af8e747b98d1e1/tox-pipenv-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "d949bbdf9c23ef318ed40f7982d70969", "sha256": "e80d717986d17eedbe69363d7a4e65d4c4bb7ad2d269d4b79eb95cdfbec05a27" }, "downloads": -1, "filename": "tox_pipenv-1.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d949bbdf9c23ef318ed40f7982d70969", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6667, "upload_time": "2018-03-15T12:06:21", "url": "https://files.pythonhosted.org/packages/da/d5/efba7cd3fababc7adb8613c02c9968759f667f087bf39ad52ed21f1b7cff/tox_pipenv-1.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7b96049e155debeac2e660f802651252", "sha256": "5d4995838a9c5d679b88e7560e46bada7e96747c3e21111d46569e64b8fd22b5" }, "downloads": -1, "filename": "tox-pipenv-1.4.1.tar.gz", "has_sig": false, "md5_digest": "7b96049e155debeac2e660f802651252", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14687, "upload_time": "2018-03-15T12:06:24", "url": "https://files.pythonhosted.org/packages/0a/ff/eb585310de4dc78d03144254c1dd4596bd496f33ab8e7382a7ca790e378a/tox-pipenv-1.4.1.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "e64cc80ca3f151ca20b7d88eae782e72", "sha256": "37caadf2c62a071e3a54485285c4c3d21856fbf1f818ac8bead32003f51ac7b6" }, "downloads": -1, "filename": "tox_pipenv-1.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e64cc80ca3f151ca20b7d88eae782e72", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4609, "upload_time": "2018-07-03T10:29:41", "url": "https://files.pythonhosted.org/packages/e4/15/ec42b173574e97ebbe1288f2fb4afcc3e011d90602195e9eb152fa58fabf/tox_pipenv-1.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "55d25afd70b16edd15fd595731f69385", "sha256": "9568ef61b01eb453e821bfb6d3dccbfeed68c49beae405c717218be894ac0d6b" }, "downloads": -1, "filename": "tox-pipenv-1.5.0.tar.gz", "has_sig": false, "md5_digest": "55d25afd70b16edd15fd595731f69385", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9873, "upload_time": "2018-07-03T10:29:42", "url": "https://files.pythonhosted.org/packages/27/04/31af474b8bdb6ecfb37994479dd96a035caa06f748966b18bd264431c6f3/tox-pipenv-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "75875adbf86ca555b3a9cfefc43ef85e", "sha256": "94ae45fe405aa7f536546bac54b3262cc108814e376a3d74dc0115b26ead3923" }, "downloads": -1, "filename": "tox_pipenv-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "75875adbf86ca555b3a9cfefc43ef85e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5473, "upload_time": "2018-07-04T06:24:15", "url": "https://files.pythonhosted.org/packages/16/7c/400d48a2c74724faa4e1e2157ab192218184b14d9844e0a075c2877a973a/tox_pipenv-1.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8937fe56dc1c044a86a0c278fe6df85a", "sha256": "64665ac2e8783f74eeefca3ba4ad6b64a495552d91b5da559b6de866b2923bdd" }, "downloads": -1, "filename": "tox-pipenv-1.6.0.tar.gz", "has_sig": false, "md5_digest": "8937fe56dc1c044a86a0c278fe6df85a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12947, "upload_time": "2018-07-04T06:24:16", "url": "https://files.pythonhosted.org/packages/1f/72/27ebcadca81b1de41b0c7e8890a2a140feadb8ac648331752ca15f34392f/tox-pipenv-1.6.0.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "69c24d542fac68e3f520cb6b20ad8a08", "sha256": "5404dfab6d2b2eed7c895b49e113201612d2903868a62f90a721352eba82e47f" }, "downloads": -1, "filename": "tox_pipenv-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "69c24d542fac68e3f520cb6b20ad8a08", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6362, "upload_time": "2018-10-30T03:31:52", "url": "https://files.pythonhosted.org/packages/37/08/b7f7fb23fdf16e233c4704f560b852e8dd761f33172bd23ba2813aeae53e/tox_pipenv-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26ed700deb984f3e35ac3ab2c43971fe", "sha256": "f18e1141898dadaf75c60ae3f3b1901afb555bc365b82d628431d7b1e40693c3" }, "downloads": -1, "filename": "tox-pipenv-1.7.0.tar.gz", "has_sig": false, "md5_digest": "26ed700deb984f3e35ac3ab2c43971fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13232, "upload_time": "2018-10-30T03:31:53", "url": "https://files.pythonhosted.org/packages/c8/6c/ea666de0d9ff5a45337fece65a3be56d8cfc9b289a3fd7b54e3d66860e3b/tox-pipenv-1.7.0.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "15dbcf926f13ad54d71d31996b0d0e83", "sha256": "3b8aa83278d9cc2424b0403be6f8e81f97f6b7d43514ddc3132cde956097aebb" }, "downloads": -1, "filename": "tox_pipenv-1.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "15dbcf926f13ad54d71d31996b0d0e83", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6403, "upload_time": "2018-10-30T04:14:39", "url": "https://files.pythonhosted.org/packages/0b/9c/020fd86ea6288470e20e0bd862ecd39a4917fb0372b7c8525e79eaf8b605/tox_pipenv-1.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c9433c697d38a59be272f38e7384aa5", "sha256": "a1f97ec74fd3df651bc6e0d3feb0c610b99522606202b1863353b3dd14cd4a1d" }, "downloads": -1, "filename": "tox-pipenv-1.8.0.tar.gz", "has_sig": false, "md5_digest": "5c9433c697d38a59be272f38e7384aa5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13330, "upload_time": "2018-10-30T04:14:41", "url": "https://files.pythonhosted.org/packages/3e/97/2baba6e9b4396d1656de3ba0da577b7a04ed69f508068561989f381a01d7/tox-pipenv-1.8.0.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "f13c03bd8832bc623f0c0071716c24ae", "sha256": "11342d2953d5be105b9530389191002fc7f9b5a78150d94b19acf87b3ad668dc" }, "downloads": -1, "filename": "tox_pipenv-1.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f13c03bd8832bc623f0c0071716c24ae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5694, "upload_time": "2019-01-27T02:17:44", "url": "https://files.pythonhosted.org/packages/38/3f/34a9317308bfb396fe5bd4b76ad70292b90c6442a1da3cf425798c8d2b2c/tox_pipenv-1.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7215fc8a56910aa6ef06ec9a7c080fa", "sha256": "8c82aea4a64db248246d171bffc0e831773432e76e47c25c2fb9a37354e71501" }, "downloads": -1, "filename": "tox-pipenv-1.9.0.tar.gz", "has_sig": false, "md5_digest": "d7215fc8a56910aa6ef06ec9a7c080fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13519, "upload_time": "2019-01-27T02:17:46", "url": "https://files.pythonhosted.org/packages/11/7c/11193897529885b0f4097a14479affb370063cfd8859c2dea456866cb1c6/tox-pipenv-1.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f13c03bd8832bc623f0c0071716c24ae", "sha256": "11342d2953d5be105b9530389191002fc7f9b5a78150d94b19acf87b3ad668dc" }, "downloads": -1, "filename": "tox_pipenv-1.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f13c03bd8832bc623f0c0071716c24ae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5694, "upload_time": "2019-01-27T02:17:44", "url": "https://files.pythonhosted.org/packages/38/3f/34a9317308bfb396fe5bd4b76ad70292b90c6442a1da3cf425798c8d2b2c/tox_pipenv-1.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7215fc8a56910aa6ef06ec9a7c080fa", "sha256": "8c82aea4a64db248246d171bffc0e831773432e76e47c25c2fb9a37354e71501" }, "downloads": -1, "filename": "tox-pipenv-1.9.0.tar.gz", "has_sig": false, "md5_digest": "d7215fc8a56910aa6ef06ec9a7c080fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13519, "upload_time": "2019-01-27T02:17:46", "url": "https://files.pythonhosted.org/packages/11/7c/11193897529885b0f4097a14479affb370063cfd8859c2dea456866cb1c6/tox-pipenv-1.9.0.tar.gz" } ] }