{ "info": { "author": "Sam Spilsbury", "author_email": "smspillaz@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Software Development :: Build Tools" ], "description": "Polysquare Travis Container\n===========================\n\nCreates a self-contained package-management installation, without root\naccess.\n\nThis allows you to install a pre-defined set of packages to a directory\nand then execute commands using the packages installed in that\ndirectory.\n\nSupports Windows, OS X and Linux.\n\nOn Windows and OS X, local versions of chocolatey and brew are installed\nrespectively, with packages installing to the specified folder. Commands\nare executed with environment variables set such that the locally\ninstalled packages will be used by any software built or installed using\nthe ``psq-travis-container-exec`` wrapper. Only the host architecture is\nsupported.\n\nOn Linux, ```proot`` `_ is used to \"containerize\" a\ndownloaded linux distribution, where the package manage operates only on\nthe directory in which the downloaded linux distribution exists. This\nallows you to install packages using ``apt-get`` or ``yum`` without\ntouching other system files. ``proot`` allow allows for different\narchitectures to be specified as well, which are emulated transparently\nusing the ``qemu-user-mode`` tool.\n\nFor Linux, an alternative 'local' option is also provided which does not\nincur the overhead of ``proot`` but is not as flexible. Sadly, on\nTravis-CI, ``proot`` no longer functions correctly and so the latter\nmode of operation is required.\n\nStatus\n------\n\n\\| Travis CI (Ubuntu) \\| AppVeyor (Windows) \\| Coverage \\| PyPI \\|\nLicence \\|\n\\|--------------------\\|--------------------\\|----------\\|------\\|---------\\|\n\\|`|Travis| `_\\|`|AppVeyor| `_\\|`|Coveralls| `_\\|`|PyPIVersion| `_`|PyPIPythons| `_\\|`|License| `_\\|\n\nCaveats\n-------\n\n64 bit executables cannot be emulated on a 32 bit architecture.\n\nInstallation\n------------\n\n``polysquare-travis-container`` can be installed using using ``pip``\nfrom PyPI\n\nCreating a container\n--------------------\n\nContainers can be created with ``psq-travis-container-create``:\n\n::\n\n usage: psq-travis-container-create [-h] [--distro {Fedora,\n Debian,\n Ubuntu,\n Windows,\n OSX}]\n [--release RELEASE]\n [--arch {ppc,x86_64,x86,arm}]\n [--repositories REPOSITORIES]\n [--packages PACKAGES]\n CONTAINER_DIRECTORY\n\n Create a Travis CI container If an arg is specified in more than one place,\n then command-line values override environment variables which override\n defaults.\n\n positional arguments:\n CONTAINER_DIRECTORY Directory to place container in\n\n optional arguments:\n -h, --help show this help message and exit\n --distro {Fedora,Debian,Ubuntu,Windows,OSX}\n Distribution name to create container of\n [env var: CONTAINER_DISTRO]\n --release RELEASE Distribution release to create container of\n [env var: CONTAINER_RELEASE]\n --arch {ppc,x86_64,x86,arm}\n Architecture (all architectures other than the\n system architecture will be emulated with qemu)\n [env var: CONTAINER_ARCH]\n --repositories REPOSITORIES\n A file containing a list of repositories to add\n before installing packages. Special keywords will\n control the operation of this file: {release}: The\n distribution release (eg, precise) {ubuntu}: Ubuntu\n archive URL {launchpad}: Launchpad PPA URL header\n (eg, http://ppa.launchpad.net)\n --packages PACKAGES A file containing a list of packages to install\n\nThe distribution filesystem itself is placed in a subdirectory of\n``CONTAINER_DIRECTORY``, so multiple distribution configurations can be\nplaced in a single ``CONTAINER_DIRECTORY``. A mini-distribution of\n``proot`` will also be placed in ``CONTAINER_DIRECTORY``. This directory\nshould be cached, for instance:\n\n::\n\n cache:\n directories:\n - CONTAINER_DIRECTORY\n\nPackages will only be installed if the container is being created and\nnot restored from the cache. To install additional packages, the travis\ncaches should be deleted.\n\nSpecial directories like ``/tmp`` and ``/home`` are linked\nautomatically, so you can run binaries or scripts directly from the\nproject root.\n\nUsing a container\n-----------------\n\nTo run a command inside a container, use ``psq-travis-container-exec``:\n\n::\n\n usage: psq-travis-container-exec [-h] [--distro {Fedora,\n Debian,\n Ubuntu,\n Windows,\n OSX}]\n [--release RELEASE]\n [--arch {ppc,x86_64,x86,arm}] --cmd\n [CMD [CMD ...]]\n CONTAINER_DIRECTORY\n\n Use a Travis CI container If an arg is specified in more than one place,\n then command-line values override environment variables which override\n defaults.\n\n positional arguments:\n CONTAINER_DIRECTORY Directory to place container in\n\n optional arguments:\n -h, --help show this help message and exit\n --distro {Fedora,Debian,Ubuntu,Windows,OSX}\n Distribution name to create container of\n [env var: CONTAINER_DISTRO]\n --release RELEASE Distribution release to create container of\n [env var: CONTAINER_RELEASE]\n --arch {ppc,x86_64,x86,arm}\n Architecture (all architectures other than the\n system architecture will be emulated with qemu)\n [env var: CONTAINER_ARCH]\n -- [CMD [CMD ...]] Command to run inside of container\n\nExecutables in CMD are resolved relative to the distribution container,\nso running ``bash`` would run ``CONTAINER_DIR/bin/bash`` and not\n``/bin/bash`` inside travis.\n\nThe ``--container``, ``--release`` and ``--arch`` options are used to\nselect a pre-existing distribution container set up with\n``psq-travis-container-create``.\n\n.. |Travis| image:: https://img.shields.io/travis/polysquare/polysquare-travis-container.svg\n.. |AppVeyor| image:: https://img.shields.io/appveyor/ci/smspillaz/polysquare-travis-container-vd3yj.svg\n.. |Coveralls| image:: https://img.shields.io/coveralls/polysquare/polysquare-travis-container.svg\n.. |PyPIVersion| image:: https://img.shields.io/pypi/v/polysquare-travis-container.svg\n.. |PyPIPythons| image:: https://img.shields.io/pypi/pyversions/polysquare-travis-container.svg\n.. |License| image:: https://img.shields.io/github/license/polysquare/polysquare-travis-container.svg", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/polysquare/polysquare-travis-container", "keywords": "development travis", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "polysquare-travis-container", "package_url": "https://pypi.org/project/polysquare-travis-container/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/polysquare-travis-container/", "project_urls": { "Homepage": "http://github.com/polysquare/polysquare-travis-container" }, "release_url": "https://pypi.org/project/polysquare-travis-container/0.0.45/", "requires_dist": null, "requires_python": "", "summary": "Polysquare Travis-CI Container Root", "version": "0.0.45" }, "last_serial": 2560341, "releases": { "0.0.10": [ { "comment_text": "", "digests": { "md5": "d04c342c15acc73c680a34fa06e58166", "sha256": "a2a495bd6176e9e171eeef5325907902dc95b1e9c4b516e7faf64117cd734f32" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.10.tar.gz", "has_sig": false, "md5_digest": "d04c342c15acc73c680a34fa06e58166", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28140, "upload_time": "2015-08-02T12:49:49", "url": "https://files.pythonhosted.org/packages/7f/c1/436566614a89f563182604f6a261ddd6bad17f08313085923819b61313a6/polysquare-travis-container-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "ad23d64d73718e35fdfc4c697a37c345", "sha256": "30e66cd8e7e718ff4ad4907b1626d258e1cd1816cafbb91e26673937778ef9fb" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.11.tar.gz", "has_sig": false, "md5_digest": "ad23d64d73718e35fdfc4c697a37c345", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27902, "upload_time": "2015-08-02T14:12:31", "url": "https://files.pythonhosted.org/packages/96/08/1b1fcd7f979cfc2e69f163d7f5776c66cc210b524830fcf5fe704fba4ff3/polysquare-travis-container-0.0.11.tar.gz" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "001cda334e49a408200d01dff00c212e", "sha256": "db1a0646f98e4d876040b871b89ea49a3001db81ff5e97606ac9c270e8288231" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.12.tar.gz", "has_sig": false, "md5_digest": "001cda334e49a408200d01dff00c212e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27904, "upload_time": "2015-08-04T11:29:39", "url": "https://files.pythonhosted.org/packages/7d/1a/9e52d37fe3b58bc5de36f5d03b7947173ac25b10cd1761690beac1068b40/polysquare-travis-container-0.0.12.tar.gz" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "77c85d997267337ebb8ca1d7f989047e", "sha256": "978560d444c2901bbd58b66aea8d74c3a45c71d6dd8e1ac76b2540a9cd5c9c42" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.13.tar.gz", "has_sig": false, "md5_digest": "77c85d997267337ebb8ca1d7f989047e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28043, "upload_time": "2015-08-04T17:52:08", "url": "https://files.pythonhosted.org/packages/4f/35/9ed720285983efc74e16026ba0fd7ea21fb1bed69ccb172b9bf0dd6d9a08/polysquare-travis-container-0.0.13.tar.gz" } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "3c9c41453fb0c0a0b868e0450336bf21", "sha256": "40c3a577a0af21864be72ee7e185cf9c976d1ad1a6ca5897a2d014015314a99d" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.14.tar.gz", "has_sig": false, "md5_digest": "3c9c41453fb0c0a0b868e0450336bf21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25308, "upload_time": "2015-08-12T07:31:52", "url": "https://files.pythonhosted.org/packages/01/aa/d9d1f6a373653c733046d36f2489600060c77dfd1a62deac5e5631caad43/polysquare-travis-container-0.0.14.tar.gz" } ], "0.0.15": [ { "comment_text": "", "digests": { "md5": "1fcc2cf13bc11893ca5c8f7610968f62", "sha256": "68442fb973d776ab15187b17b80a791def2828c93df95846de61511cf3570352" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.15.tar.gz", "has_sig": false, "md5_digest": "1fcc2cf13bc11893ca5c8f7610968f62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25316, "upload_time": "2015-08-12T08:33:23", "url": "https://files.pythonhosted.org/packages/5f/15/e034742ca1ae776f718385c58e830715d401e951938c6028e666a7b7bf1d/polysquare-travis-container-0.0.15.tar.gz" } ], "0.0.17": [ { "comment_text": "", "digests": { "md5": "66ae020b327aa39a720fc5f5896f50bf", "sha256": "2cf0e8f4ebd6be9664801b2ca983e95afa96c04b6b31906fadde6a9caba90855" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.17.tar.gz", "has_sig": false, "md5_digest": "66ae020b327aa39a720fc5f5896f50bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28135, "upload_time": "2015-08-13T12:31:42", "url": "https://files.pythonhosted.org/packages/4e/b3/60289b33720528b1a7e125767c8a8e3fc41118d40b8f01057bdbf96d91b8/polysquare-travis-container-0.0.17.tar.gz" } ], "0.0.18": [ { "comment_text": "", "digests": { "md5": "0172122573b2bcf9e5050bf293e53bc7", "sha256": "0b32358caa737dc9b94bd23f3ecfc0a858ca0082f72c62072909099cae25b13b" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.18.tar.gz", "has_sig": false, "md5_digest": "0172122573b2bcf9e5050bf293e53bc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28146, "upload_time": "2015-10-18T11:23:17", "url": "https://files.pythonhosted.org/packages/27/1c/6d47f4fea31fae91f8f52bcd66598f474cd93b2561e70b56a8e3fe084124/polysquare-travis-container-0.0.18.tar.gz" } ], "0.0.19": [ { "comment_text": "", "digests": { "md5": "0aac089d9b2198c901c08961aacfcc7f", "sha256": "a664f507fae5cdc74613f1aa745992518d462451764de4fa284bd6218bda17cd" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.19.tar.gz", "has_sig": false, "md5_digest": "0aac089d9b2198c901c08961aacfcc7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28344, "upload_time": "2015-10-18T14:04:27", "url": "https://files.pythonhosted.org/packages/4b/11/92d6d9c5b9e57eec72a479f4b1a612a21e460cc8804b13b06320ce8ad497/polysquare-travis-container-0.0.19.tar.gz" } ], "0.0.20": [ { "comment_text": "", "digests": { "md5": "292724c3bf0d1021d94bf2e26281468a", "sha256": "f5e0dfa57f622467dd3963823ec11cba26b1788558c7c0c5fdd10dcca4fa51a0" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.20.tar.gz", "has_sig": false, "md5_digest": "292724c3bf0d1021d94bf2e26281468a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28356, "upload_time": "2015-10-19T14:42:35", "url": "https://files.pythonhosted.org/packages/a4/65/0e595db94ab36ca2b5c4af9148b65565057bfa90b95d7161e0c04deb5f8e/polysquare-travis-container-0.0.20.tar.gz" } ], "0.0.21": [ { "comment_text": "", "digests": { "md5": "26f83c0b1bb3a3197924b41b6a4e4ed3", "sha256": "9c64c73d33adda3669639401a671f6c558d721755917bf983361bf382bb171dc" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.21.tar.gz", "has_sig": false, "md5_digest": "26f83c0b1bb3a3197924b41b6a4e4ed3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28359, "upload_time": "2016-03-03T13:52:34", "url": "https://files.pythonhosted.org/packages/7e/9a/89af2e8e382142edc53c70b3a01a790d77f50c89dec19c62ef2c0c725b0f/polysquare-travis-container-0.0.21.tar.gz" } ], "0.0.22": [ { "comment_text": "", "digests": { "md5": "7f1534a5e4493649454031d6add9cd2c", "sha256": "141d23620c289eefb4efa0b8a969ef87a96be4f15da31d25602854f0b06729f4" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.22.tar.gz", "has_sig": false, "md5_digest": "7f1534a5e4493649454031d6add9cd2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28359, "upload_time": "2016-03-06T15:22:37", "url": "https://files.pythonhosted.org/packages/c1/4c/ba200dcc2ebf1b3ae2c6d85da25a9b6231f6d995ad3fc914434c347e2fc0/polysquare-travis-container-0.0.22.tar.gz" } ], "0.0.23": [ { "comment_text": "", "digests": { "md5": "3c5aab0a4362f9c27510612e5445a64b", "sha256": "86624d8e66059ec2991879b79184a677a87208245894804ddff26cbda681e89a" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.23.tar.gz", "has_sig": false, "md5_digest": "3c5aab0a4362f9c27510612e5445a64b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28241, "upload_time": "2016-03-26T07:36:03", "url": "https://files.pythonhosted.org/packages/df/5c/e6c9e714a9e55945e53808b8642425745f167ffb859cb6b8441645c225c2/polysquare-travis-container-0.0.23.tar.gz" } ], "0.0.24": [ { "comment_text": "", "digests": { "md5": "483fe023dffea3bb30465fb15ee653cf", "sha256": "c053df6b9b0c98c53a0bc836b1c2bd1bdccbb3bb0b4a30d723658c1f5525f1b2" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.24.tar.gz", "has_sig": false, "md5_digest": "483fe023dffea3bb30465fb15ee653cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29217, "upload_time": "2016-05-04T12:56:34", "url": "https://files.pythonhosted.org/packages/ee/3f/95ce50ebba6d4182dbe25912f8972da3b3d30a317e669ceb01d752b9d081/polysquare-travis-container-0.0.24.tar.gz" } ], "0.0.25": [ { "comment_text": "", "digests": { "md5": "c482e1b51cbf7ce682de5c863e020128", "sha256": "b51cb5eb5f1b69ebc7e39dec9c9b2c9213711e02c63c00fbd5a000efddac477f" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.25.tar.gz", "has_sig": false, "md5_digest": "c482e1b51cbf7ce682de5c863e020128", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29164, "upload_time": "2016-05-05T13:02:21", "url": "https://files.pythonhosted.org/packages/28/5f/f7791890b539add5d24949225f8180a0ba0070082094838b64054f149281/polysquare-travis-container-0.0.25.tar.gz" } ], "0.0.26": [ { "comment_text": "", "digests": { "md5": "9e63e5d495784c1be9c9f5619380cd95", "sha256": "f002f8e857595c29ef787afe4349b7a5ac4a10f4f9dfa476efc49b26a35fba79" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.26.tar.gz", "has_sig": false, "md5_digest": "9e63e5d495784c1be9c9f5619380cd95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29157, "upload_time": "2016-05-08T04:56:46", "url": "https://files.pythonhosted.org/packages/fe/87/e1c84b156df3d4d809adeb9229a6b776fe7a83a377f57b7ea3df55326a39/polysquare-travis-container-0.0.26.tar.gz" } ], "0.0.27": [ { "comment_text": "", "digests": { "md5": "808cfcd9fb2729a631220723e469d7d0", "sha256": "5f39c190b0feec240a82760315809d8e1ff2e37866c112a981c608980d1caf54" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.27.tar.gz", "has_sig": false, "md5_digest": "808cfcd9fb2729a631220723e469d7d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29159, "upload_time": "2016-05-08T08:38:47", "url": "https://files.pythonhosted.org/packages/4e/78/0275f9d798020cf8d069a0b5271ca3f15c4490749486f820b48f96948775/polysquare-travis-container-0.0.27.tar.gz" } ], "0.0.28": [ { "comment_text": "", "digests": { "md5": "215f5685b21a28813767da1dbea91104", "sha256": "9914ddff4cfa47c62c0d1ac7a19fe60fc9c363e29e57b4260ad3cedb4840ab22" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.28.tar.gz", "has_sig": false, "md5_digest": "215f5685b21a28813767da1dbea91104", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29208, "upload_time": "2016-05-10T14:21:24", "url": "https://files.pythonhosted.org/packages/d5/d2/4434928cedb4524f48752222b731878cceaccb957cd02f7a61c6a79f2ec4/polysquare-travis-container-0.0.28.tar.gz" } ], "0.0.29": [ { "comment_text": "", "digests": { "md5": "2165b0f107778222498a6e39294bc04a", "sha256": "12d20d4ec4c35da56c8eaf475ab747e83fe0d2756f40d1f00ff7ddfe886b6cc0" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.29.tar.gz", "has_sig": false, "md5_digest": "2165b0f107778222498a6e39294bc04a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29612, "upload_time": "2016-05-16T13:52:50", "url": "https://files.pythonhosted.org/packages/8e/fb/78ec948cf0c04de395b902a5d12ec1b9b6c1e3bbf42c88e3b065a752b294/polysquare-travis-container-0.0.29.tar.gz" } ], "0.0.30": [ { "comment_text": "", "digests": { "md5": "dcfef571a7995b5fe360b6c22d565002", "sha256": "91444058dd7fed1f9308a20e6ecdbf82ab492c378fb448ea8f3cf38e9e00b0a7" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.30.tar.gz", "has_sig": false, "md5_digest": "dcfef571a7995b5fe360b6c22d565002", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29758, "upload_time": "2016-05-28T14:36:15", "url": "https://files.pythonhosted.org/packages/88/82/60ef41be83df47dd12761d4f4854dc8599609644ff33eb397fb5cdd0fa42/polysquare-travis-container-0.0.30.tar.gz" } ], "0.0.31": [ { "comment_text": "", "digests": { "md5": "18ef6b02753835073626fd94aa165a1b", "sha256": "f6bba89c3de916465e0968c0dee5efb3c64e96cfe25fc9acb680bd7b7a9eeb6b" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.31.tar.gz", "has_sig": false, "md5_digest": "18ef6b02753835073626fd94aa165a1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29759, "upload_time": "2016-05-29T09:51:46", "url": "https://files.pythonhosted.org/packages/1c/8c/a6e1a1cf48e70d5fdd82e759ec9dab6574c1ad7c6cdf2262aacd4b7dbfa8/polysquare-travis-container-0.0.31.tar.gz" } ], "0.0.32": [ { "comment_text": "", "digests": { "md5": "9a95f02610a50583076ec8d00fe2a9b3", "sha256": "15b4d6f6b2e93bf82a78df9f1c1f70287a0b546eebd478825895170f161e135e" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.32.tar.gz", "has_sig": false, "md5_digest": "9a95f02610a50583076ec8d00fe2a9b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29811, "upload_time": "2016-05-30T03:27:07", "url": "https://files.pythonhosted.org/packages/f1/aa/0a732d9b679772df627b39fc0d034c99d9b407491f95387cf7368e4f1c1e/polysquare-travis-container-0.0.32.tar.gz" } ], "0.0.33": [ { "comment_text": "", "digests": { "md5": "32a8919cc5a5d86c2a60e01f75478ca8", "sha256": "f03879fc823f8f4bb909862b8ad2ac45c490f84da9db146e342c24e75dcd5a78" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.33.tar.gz", "has_sig": false, "md5_digest": "32a8919cc5a5d86c2a60e01f75478ca8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30082, "upload_time": "2016-05-30T06:23:02", "url": "https://files.pythonhosted.org/packages/d9/91/5218b123b16c533cfeb3dd9721794eed478ba2bea313ee4fe5d33ffee6bf/polysquare-travis-container-0.0.33.tar.gz" } ], "0.0.34": [ { "comment_text": "", "digests": { "md5": "368191c2c50aecc7bd42aeb8c5d6ab7a", "sha256": "f578441dc9c51836eba442c81ba4fb677f71f6178a378612d1dba0fdc41fd43d" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.34.tar.gz", "has_sig": false, "md5_digest": "368191c2c50aecc7bd42aeb8c5d6ab7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30082, "upload_time": "2016-05-30T06:59:55", "url": "https://files.pythonhosted.org/packages/f4/3b/f65e3cc3edc72b3c3997d085b71797af962a429d788268a1fe0d91e26122/polysquare-travis-container-0.0.34.tar.gz" } ], "0.0.35": [ { "comment_text": "", "digests": { "md5": "de76f9ab795fd1e2b93a40a064e969ee", "sha256": "dbf2211c0feb4d97697d442a94b87448d18d4be210ebed4af6a856c147ef0349" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.35.tar.gz", "has_sig": false, "md5_digest": "de76f9ab795fd1e2b93a40a064e969ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30172, "upload_time": "2016-05-30T08:26:02", "url": "https://files.pythonhosted.org/packages/64/bd/492bf012a87416644bc8098303d3af3fc73115fad51ffe486313ba946511/polysquare-travis-container-0.0.35.tar.gz" } ], "0.0.36": [ { "comment_text": "", "digests": { "md5": "3538b28392cc4572532a746b70548ddc", "sha256": "882be9cf5a0b96f84acee9c9b14b545d8ad311eb498db3f8f2724bf1a72d025a" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.36.tar.gz", "has_sig": false, "md5_digest": "3538b28392cc4572532a746b70548ddc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30178, "upload_time": "2016-05-30T10:24:02", "url": "https://files.pythonhosted.org/packages/88/58/b8b6be84cab6a4ff4962ae9adfd1f060185c132ae150b18108d80087ac99/polysquare-travis-container-0.0.36.tar.gz" } ], "0.0.37": [ { "comment_text": "", "digests": { "md5": "179a8bb6d348bb3a9e043c2f5589d0db", "sha256": "78a68b6f8bb796e4f9f899bca6f64eac5f6ec1757598049d4fd5b8e124b931a0" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.37.tar.gz", "has_sig": false, "md5_digest": "179a8bb6d348bb3a9e043c2f5589d0db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31719, "upload_time": "2016-08-06T14:27:41", "url": "https://files.pythonhosted.org/packages/fa/7a/3de4469685fff1bfc12111f69af9d4c21a1963821f92d1334c5753d16d89/polysquare-travis-container-0.0.37.tar.gz" } ], "0.0.38": [ { "comment_text": "", "digests": { "md5": "600dbc860883774123416067a148c42a", "sha256": "22eafaf999f5e96f8c6b8e0b8f4044b01946161951c56ac40c9be71e1bef4e91" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.38.tar.gz", "has_sig": false, "md5_digest": "600dbc860883774123416067a148c42a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34249, "upload_time": "2016-08-07T11:46:22", "url": "https://files.pythonhosted.org/packages/1d/27/c220cb1b29801bd40722823581c9a43bed195c6084892406bbe0b9779ac5/polysquare-travis-container-0.0.38.tar.gz" } ], "0.0.39": [ { "comment_text": "", "digests": { "md5": "032f3953a91046ec1ecc4bc3d428b5d8", "sha256": "ef23ddc9d8e81d4e8338a6c836c0e7f7e3987fd913cc3e5a237991154a577727" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.39.tar.gz", "has_sig": false, "md5_digest": "032f3953a91046ec1ecc4bc3d428b5d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34252, "upload_time": "2016-08-14T06:16:05", "url": "https://files.pythonhosted.org/packages/15/d3/7d116f831c0c8a9e8937f39ac988d89ad65c7acdb72ca5d85d3b59c7199b/polysquare-travis-container-0.0.39.tar.gz" } ], "0.0.40": [ { "comment_text": "", "digests": { "md5": "f0c6190d515f07d4f14b8211214599db", "sha256": "a97bffabfb2430b65c2dfa3e140bc9870f86502daeee08555e6d7ccce23898b7" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.40.tar.gz", "has_sig": false, "md5_digest": "f0c6190d515f07d4f14b8211214599db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34268, "upload_time": "2016-10-09T08:15:42", "url": "https://files.pythonhosted.org/packages/6e/36/dc001ac5997a65e1f8075ad990317ea4e805f84b7abeb985461a50af35b5/polysquare-travis-container-0.0.40.tar.gz" } ], "0.0.41": [ { "comment_text": "", "digests": { "md5": "d1490a6e370146321a6f1bd0526dcebd", "sha256": "1906cc07ac2593b97803899a423ff6c9ed13926447c6e32e8218286aa319bee9" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.41.tar.gz", "has_sig": false, "md5_digest": "d1490a6e370146321a6f1bd0526dcebd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34245, "upload_time": "2016-10-10T04:43:16", "url": "https://files.pythonhosted.org/packages/cd/51/a928a9df0c6a0300c95b852bee6203defbda14d7f7108301b61aa5d66a2d/polysquare-travis-container-0.0.41.tar.gz" } ], "0.0.42": [ { "comment_text": "", "digests": { "md5": "152dce6aa97a5647cc6c5ff50d86d4e7", "sha256": "df7bcc1da1c032bc41e8f0125274252ab761788cb37eacfd8e3b0f7bef3de8c5" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.42.tar.gz", "has_sig": false, "md5_digest": "152dce6aa97a5647cc6c5ff50d86d4e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34236, "upload_time": "2016-11-10T13:56:13", "url": "https://files.pythonhosted.org/packages/92/50/0c0b5ff622c237113fbbea7879d5f3e4977934d906f710962876cd793577/polysquare-travis-container-0.0.42.tar.gz" } ], "0.0.43": [ { "comment_text": "", "digests": { "md5": "51801545c95b6d80871f6d6aaac2c4ce", "sha256": "b0a86fe6a58b3ace9dd48c94bdf62f4f438703d2fbdb0a6ab2bea869b9e6a02d" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.43.tar.gz", "has_sig": false, "md5_digest": "51801545c95b6d80871f6d6aaac2c4ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35597, "upload_time": "2017-01-04T07:19:00", "url": "https://files.pythonhosted.org/packages/9f/f0/616542f1459fd4a2abb6e3b439b36a0872654f268d1b4629a106916a29ec/polysquare-travis-container-0.0.43.tar.gz" } ], "0.0.44": [ { "comment_text": "", "digests": { "md5": "fc841aa0d39dc0299afcb0940097fa59", "sha256": "ac1a91af4f1557ad20b32b0d07abcd49108f385a9e4785afb1527bb2d66f5a49" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.44.tar.gz", "has_sig": false, "md5_digest": "fc841aa0d39dc0299afcb0940097fa59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35665, "upload_time": "2017-01-08T06:43:45", "url": "https://files.pythonhosted.org/packages/9b/21/ad71ab8eb4049bb4ab8247a707b77839a6cfa7b32f5e44cb98fe9d263160/polysquare-travis-container-0.0.44.tar.gz" } ], "0.0.45": [ { "comment_text": "", "digests": { "md5": "fe0b67d57afc63ae24ce0da35e64b2a8", "sha256": "faea9826ed3a938ffb8d5a96c4b7f5845fa429ed09913bc8e1b2c8586afef65a" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.45.tar.gz", "has_sig": false, "md5_digest": "fe0b67d57afc63ae24ce0da35e64b2a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35670, "upload_time": "2017-01-08T07:38:21", "url": "https://files.pythonhosted.org/packages/5e/d2/9c87ac7c26b9e3ae3cce963220864f722edc40eba3a2961fdbd7fc03dd9b/polysquare-travis-container-0.0.45.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "5af1617da8d1fe3025e729de0979eec3", "sha256": "f69b315b78903f04d6e24e745071fdb1661f57fb6d5f6faa557301fc131031ce" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.7.tar.gz", "has_sig": false, "md5_digest": "5af1617da8d1fe3025e729de0979eec3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27670, "upload_time": "2015-07-29T09:01:16", "url": "https://files.pythonhosted.org/packages/c8/c9/2863394d35284488097dbbb720882f487aab480421402d3f1f9c2bc1b880/polysquare-travis-container-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "bbe02b4a06483b328bf7edd60baf4fd5", "sha256": "c3ecf8124461dc7bb4fa3142b2d4d589aa096aae5c1df1316e4c50951f24cf4a" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.8.tar.gz", "has_sig": false, "md5_digest": "bbe02b4a06483b328bf7edd60baf4fd5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27680, "upload_time": "2015-07-29T09:26:58", "url": "https://files.pythonhosted.org/packages/72/2a/84ddca476dbe4a7ff5a8843ff5ab9a219a9070213eabfe17e7a2983fc3a4/polysquare-travis-container-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "6be54ef1f3238a22fe483f2a5f7a75e2", "sha256": "ee814de968304c3959fa97befa0f2dafca6b1ded40e0a9c4957fcda86ff36798" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.9.tar.gz", "has_sig": false, "md5_digest": "6be54ef1f3238a22fe483f2a5f7a75e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27859, "upload_time": "2015-08-01T07:25:56", "url": "https://files.pythonhosted.org/packages/8d/bf/c851571312cc07ea6057ffdea554a103a39b677bc58d09b786d5569c8a4b/polysquare-travis-container-0.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "fe0b67d57afc63ae24ce0da35e64b2a8", "sha256": "faea9826ed3a938ffb8d5a96c4b7f5845fa429ed09913bc8e1b2c8586afef65a" }, "downloads": -1, "filename": "polysquare-travis-container-0.0.45.tar.gz", "has_sig": false, "md5_digest": "fe0b67d57afc63ae24ce0da35e64b2a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35670, "upload_time": "2017-01-08T07:38:21", "url": "https://files.pythonhosted.org/packages/5e/d2/9c87ac7c26b9e3ae3cce963220864f722edc40eba3a2961fdbd7fc03dd9b/polysquare-travis-container-0.0.45.tar.gz" } ] }