{ "info": { "author": "Steven Diamond, Eric Chu, Stephen Boyd", "author_email": "stevend2@stanford.edu, akshayka@cs.stanford.edu, echu508@stanford.edu, boyd@stanford.edu", "bugtrack_url": null, "classifiers": [], "description": "CVXPY\n=====================\n[![Build Status](http://github.com/cvxpy/cvxpy/workflows/build/badge.svg?event=push)](https://github.com/cvxpy/cvxpy/actions/workflows/build.yml)\n![PyPI - downloads](https://img.shields.io/pypi/dm/cvxpy.svg?label=Pypi%20downloads)\n![Conda - downloads](https://img.shields.io/conda/dn/conda-forge/cvxpy.svg?label=Conda%20downloads)\n\n\n**The CVXPY documentation is at [cvxpy.org](http://www.cvxpy.org/).**\n\n*We are building a CVXPY community on [Discord](https://discord.gg/4urRQeGBCr). Join the conversation! For issues and long-form discussions, use [Github Issues](https://github.com/cvxpy/cvxpy/issues) and [Github Discussions](https://github.com/cvxpy/cvxpy/discussions).*\n\n**Contents**\n- [Installation](#installation)\n- [Getting started](#getting-started)\n- [Issues](#issues)\n- [Community](#community)\n- [Contributing](#contributing)\n- [Team](#team)\n- [Citing](#citing)\n\n\nCVXPY is a Python-embedded modeling language for convex optimization problems. It allows you to express your problem in a natural way that follows the math, rather than in the restrictive standard form required by solvers.\n\nFor example, the following code solves a least-squares problem where the variable is constrained by lower and upper bounds:\n\n```python3\nimport cvxpy as cp\nimport numpy\n\n# Problem data.\nm = 30\nn = 20\nnumpy.random.seed(1)\nA = numpy.random.randn(m, n)\nb = numpy.random.randn(m)\n\n# Construct the problem.\nx = cp.Variable(n)\nobjective = cp.Minimize(cp.sum_squares(A @ x - b))\nconstraints = [0 <= x, x <= 1]\nprob = cp.Problem(objective, constraints)\n\n# The optimal objective is returned by prob.solve().\nresult = prob.solve()\n# The optimal value for x is stored in x.value.\nprint(x.value)\n# The optimal Lagrange multiplier for a constraint\n# is stored in constraint.dual_value.\nprint(constraints[0].dual_value)\n```\n\nWith CVXPY, you can model\n* convex optimization problems,\n* mixed-integer convex optimization problems,\n* geometric programs, and\n* quasiconvex programs.\n\nCVXPY is not a solver. It relies upon the open source solvers\n[ECOS](http://github.com/ifa-ethz/ecos), [SCS](https://github.com/bodono/scs-python),\nand [OSQP](https://github.com/oxfordcontrol/osqp). Additional solvers are\n[available](https://www.cvxpy.org/tutorial/advanced/index.html#choosing-a-solver),\nbut must be installed separately.\n\nCVXPY began as a Stanford University research project. It is now developed by\nmany people, across many institutions and countries.\n\n\n## Installation\nCVXPY is available on PyPI, and can be installed with\n```\npip install cvxpy\n```\n\nCVXPY can also be installed with conda, using\n```\nconda install -c conda-forge cvxpy\n```\n\nCVXPY has the following dependencies:\n\n- Python >= 3.6\n- OSQP >= 0.4.1\n- ECOS >= 2\n- SCS >= 1.1.6\n- NumPy >= 1.15\n- SciPy >= 1.1.0\n\nFor detailed instructions, see the [installation\nguide](https://www.cvxpy.org/install/index.html).\n\n## Getting started\nTo get started with CVXPY, check out the following:\n* [official CVXPY tutorial](https://www.cvxpy.org/tutorial/index.html)\n* [example library](https://www.cvxpy.org/examples/index.html)\n* [API reference](https://www.cvxpy.org/api_reference/cvxpy.html)\n\n## Issues\nWe encourage you to report issues using the [Github tracker](https://github.com/cvxpy/cvxpy/issues). We welcome all kinds of issues, especially those related to correctness, documentation, performance, and feature requests.\n\nFor basic usage questions (e.g., \"Why isn't my problem DCP?\"), please use [StackOverflow](https://stackoverflow.com/questions/tagged/cvxpy) instead.\n\n## Community\nThe CVXPY community consists of researchers, data scientists, software engineers, and students from all over the world. We welcome you to join us!\n\n* To chat with the CVXPY community in real-time, join us on [Discord](https://discord.gg/4urRQeGBCr).\n* To have longer, in-depth discussions with the CVXPY community, use [Github Discussions](https://github.com/cvxpy/cvxpy/discussions).\n* To share feature requests and bug reports, use [Github Issues](https://github.com/cvxpy/cvxpy/issues).\n\nPlease be respectful in your communications with the CVXPY community, and make sure to abide by our [code of conduct](https://github.com/cvxpy/cvxpy/blob/master/CODE_OF_CONDUCT.md).\n\n## Contributing\nWe appreciate all contributions. You don't need to be an expert in convex\noptimization to help out.\n\nYou should first\ninstall [CVXPY from source](https://www.cvxpy.org/install/index.html#install-from-source).\nHere are some simple ways to start contributing immediately:\n* Read the CVXPY source code and improve the documentation, or address TODOs\n* Enhance the [website documentation](https://github.com/cvxpy/cvxpy/tree/master/doc)\n* Browse the [issue tracker](https://github.com/cvxpy/cvxpy/issues), and look for issues tagged as \"help wanted\"\n* Polish the [example library](https://github.com/cvxpy/cvxpy/tree/master/examples)\n* Add a [benchmark](https://github.com/cvxpy/cvxpy/tree/master/cvxpy/tests/test_benchmarks.py)\n\nIf you'd like to add a new example to our library, or implement a new feature,\nplease get in touch with us first to make sure that your priorities align with\nours. \n\nContributions should be submitted as [pull requests](https://github.com/cvxpy/cvxpy/pulls).\nA member of the CVXPY development team will review the pull request and guide\nyou through the contributing process.\n\nBefore starting work on your contribution, please read the [contributing guide](https://github.com/cvxpy/cvxpy/blob/master/CONTRIBUTING.md).\n\n## Team\nCVXPY is a community project, built from the contributions of many\nresearchers and engineers.\n\nCVXPY is developed and maintained by [Steven\nDiamond](https://stevendiamond.me/), [Akshay\nAgrawal](https://akshayagrawal.com), [Riley Murray](https://rileyjmurray.wordpress.com/), and [Bartolomeo Stellato](https://stellato.io/), with many others contributing\nsignificantly. A non-exhaustive list of people who have shaped CVXPY over the\nyears includes Stephen Boyd, Eric Chu, Robin Verschueren, Michael Sommerauer,\nJaehyun Park, Enzo Busseti, AJ Friend, Judson Wilson, Chris\nDembia, and Philipp Schiele.\n\nFor more information about the team and our processes, see our [governance document](https://github.com/cvxpy/org/blob/main/governance.md).\n\n## Citing\nIf you use CVXPY for academic work, we encourage you to [cite our papers](https://www.cvxpy.org/citing/index.html). If you use CVXPY in industry, we'd love to hear from you as well, on Discord or over email.\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/cvxpy/cvxpy", "keywords": "", "license": "Apache License, Version 2.0", "maintainer": "", "maintainer_email": "", "name": "cvxpy", "package_url": "https://pypi.org/project/cvxpy/", "platform": null, "project_url": "https://pypi.org/project/cvxpy/", "project_urls": { "Homepage": "https://github.com/cvxpy/cvxpy" }, "release_url": "https://pypi.org/project/cvxpy/1.2.1/", "requires_dist": [ "osqp (>=0.4.1)", "ecos (>=2)", "scs (>=1.1.6)", "numpy (>=1.15)", "scipy (>=1.1.0)" ], "requires_python": ">=3.7", "summary": "A domain-specific language for modeling convex optimization problems in Python.", "version": "1.2.1", "yanked": false, "yanked_reason": null }, "last_serial": 13833156, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "cbe8c2309fa788d6158312ea24418c64", "sha256": "f08d2865fb67a9404b8da4200682190e63d11d1c4f0ed8083330994f691ab638" }, "downloads": -1, "filename": "cvxpy-0.1.tar.gz", "has_sig": false, "md5_digest": "cbe8c2309fa788d6158312ea24418c64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59988, "upload_time": "2014-05-05T21:49:17", "upload_time_iso_8601": "2014-05-05T21:49:17.917527Z", "url": "https://files.pythonhosted.org/packages/3c/3b/8554568e9d7fdf97b690d0bed88773ba542867040fea8b2902709b5e3eb5/cvxpy-0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2": [ { "comment_text": "", "digests": { "md5": "b2f783eb951f5ceb461c32ce6ad26554", "sha256": "3f9355dd597328d13ef4e1a339da7d4953e108d0b68081dd7ea77c650e0037e1" }, "downloads": -1, "filename": "cvxpy-0.2.tar.gz", "has_sig": false, "md5_digest": "b2f783eb951f5ceb461c32ce6ad26554", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72329, "upload_time": "2014-05-13T23:10:54", "upload_time_iso_8601": "2014-05-13T23:10:54.331103Z", "url": "https://files.pythonhosted.org/packages/34/1f/212c711061c78360b54ee4902501190dcc9e61b290423c6f075ff0354cd9/cvxpy-0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "4ef181581ec54430a344fa03ca065df5", "sha256": "f7669b915866aea3f7c9fa7a642b5e5da54cf934652f57dbdc36e06c16b840b4" }, "downloads": -1, "filename": "cvxpy-0.2.1.tar.gz", "has_sig": false, "md5_digest": "4ef181581ec54430a344fa03ca065df5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76330, "upload_time": "2014-06-05T17:24:00", "upload_time_iso_8601": "2014-06-05T17:24:00.890144Z", "url": "https://files.pythonhosted.org/packages/69/91/24e576d7351f999d7776f01e2498a165bf9c9fd64c4bf6df2c9f1f55e818/cvxpy-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "bf360d55d4b41262548a1e76ccbd0467", "sha256": "d09311af7236914f4b128c7175e4732d4703795609af6ff99661e22f8b3baffa" }, "downloads": -1, "filename": "cvxpy-0.2.10.tar.gz", "has_sig": false, "md5_digest": "bf360d55d4b41262548a1e76ccbd0467", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80783, "upload_time": "2014-08-13T05:29:04", "upload_time_iso_8601": "2014-08-13T05:29:04.596369Z", "url": "https://files.pythonhosted.org/packages/ff/9b/b430df50599512661dd005d02435e54f9a893b53bedf53205d863c69c557/cvxpy-0.2.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "4ac396a4d071698e6d181d9eaee70976", "sha256": "fb8a20f585dbedeadb1326c0ff6b6f3e6e6ad286bb6025bc099202946a0db228" }, "downloads": -1, "filename": "cvxpy-0.2.11.tar.gz", "has_sig": false, "md5_digest": "4ac396a4d071698e6d181d9eaee70976", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83278, "upload_time": "2014-08-28T00:10:41", "upload_time_iso_8601": "2014-08-28T00:10:41.258184Z", "url": "https://files.pythonhosted.org/packages/89/92/4fd8e1a2fecc16e6cdfd17a91ea6ddd680d5e96dd620ca9844c8253aab61/cvxpy-0.2.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "87fd579859a69c18b051559e15098b0e", "sha256": "244ec1bd9e4fed38a3491e60fa7e0c0f36ac47018eac6ba3fa3712aa24d3023d" }, "downloads": -1, "filename": "cvxpy-0.2.12.tar.gz", "has_sig": false, "md5_digest": "87fd579859a69c18b051559e15098b0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83208, "upload_time": "2014-09-04T12:35:59", "upload_time_iso_8601": "2014-09-04T12:35:59.360956Z", "url": "https://files.pythonhosted.org/packages/05/78/e75619f5d8d046af9a5510db5261597f2283b73ad37d8ce92c4e54af45b7/cvxpy-0.2.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "f0c99159f9c4c9ad55fd751333eeef32", "sha256": "a7183b83408a75074597114c1b0b5bd8a2d1d009a6a04b0262c22cb278b85a5a" }, "downloads": -1, "filename": "cvxpy-0.2.13.tar.gz", "has_sig": false, "md5_digest": "f0c99159f9c4c9ad55fd751333eeef32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86050, "upload_time": "2014-10-02T03:00:38", "upload_time_iso_8601": "2014-10-02T03:00:38.946923Z", "url": "https://files.pythonhosted.org/packages/72/93/c0893a4b07073ef6ecf9ca788a1637539ac766be2d14c4e734755444c35d/cvxpy-0.2.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.14": [ { "comment_text": "", "digests": { "md5": "a7dca3dcaadc1e45f41c66f49c788a65", "sha256": "9c47161faccbd4b1cc5c5b8ed21b8287f56c34dbbb5caaf8a4439d207f09e871" }, "downloads": -1, "filename": "cvxpy-0.2.14.tar.gz", "has_sig": false, "md5_digest": "a7dca3dcaadc1e45f41c66f49c788a65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 87267, "upload_time": "2014-10-06T23:25:58", "upload_time_iso_8601": "2014-10-06T23:25:58.745281Z", "url": "https://files.pythonhosted.org/packages/c4/ce/9273342ff53a5f4da9849eb590670ce2cced205dcc676760399c5eb129fe/cvxpy-0.2.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.15": [ { "comment_text": "", "digests": { "md5": "5cabc53f8d4630ff5976c3a9601ae0d7", "sha256": "c4090b59a92ba19a4a41aa31d6d4210396ce54279575ccc913dbec1872168849" }, "downloads": -1, "filename": "cvxpy-0.2.15.tar.gz", "has_sig": false, "md5_digest": "5cabc53f8d4630ff5976c3a9601ae0d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 87826, "upload_time": "2014-10-18T06:22:20", "upload_time_iso_8601": "2014-10-18T06:22:20.533241Z", "url": "https://files.pythonhosted.org/packages/cd/88/d2870dc66e02db48687ec63ba19e6c2196b077c6866a051c1aece4c7b626/cvxpy-0.2.15.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.16": [ { "comment_text": "", "digests": { "md5": "076eac7cc0bf42b0f7c93d6ff7625700", "sha256": "ea1704eee1984abee9207310db28c1beef1a64ca11f228d41baf670972018ca8" }, "downloads": -1, "filename": "cvxpy-0.2.16.tar.gz", "has_sig": false, "md5_digest": "076eac7cc0bf42b0f7c93d6ff7625700", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92511, "upload_time": "2015-01-05T02:05:21", "upload_time_iso_8601": "2015-01-05T02:05:21.618954Z", "url": "https://files.pythonhosted.org/packages/4b/ea/cb0101d73ff4de01bf339eb3cfa162aa367850b2a7791085c8fd5e8e2393/cvxpy-0.2.16.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.17": [ { "comment_text": "", "digests": { "md5": "7586c46b64165591db9ae8e939f8b802", "sha256": "faae6e535b774b52215a6d8ce3055e69e9c074d4d0c19224fc9ccf8d9c561ac5" }, "downloads": -1, "filename": "cvxpy-0.2.17.tar.gz", "has_sig": false, "md5_digest": "7586c46b64165591db9ae8e939f8b802", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 94974, "upload_time": "2015-01-28T06:37:12", "upload_time_iso_8601": "2015-01-28T06:37:12.458321Z", "url": "https://files.pythonhosted.org/packages/ff/d9/cabaedd060e443fe02b2f8b1bcd6dd88ba91998a3eb007e9ce77a2fa517b/cvxpy-0.2.17.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.18": [ { "comment_text": "", "digests": { "md5": "36b9d9243e8d9c19cc73b57a04931f5d", "sha256": "0514a2d91f1e02464470fccdf19185c4d761219952cb799e2299bb9d8bfe48e5" }, "downloads": -1, "filename": "cvxpy-0.2.18.tar.gz", "has_sig": false, "md5_digest": "36b9d9243e8d9c19cc73b57a04931f5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99478, "upload_time": "2015-04-23T03:59:59", "upload_time_iso_8601": "2015-04-23T03:59:59.689648Z", "url": "https://files.pythonhosted.org/packages/1a/5c/ea9c88b95df8456f4d1c73c71f5dce8e9e6efc42203d51b50568034fbc1a/cvxpy-0.2.18.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.19": [ { "comment_text": "", "digests": { "md5": "d400d2d036d3b669fe742f670d24ad84", "sha256": "eed5ee12c2525cac91b315b7a1adac91c8e88a51b94edafa45d7ee9e09c4d4f0" }, "downloads": -1, "filename": "cvxpy-0.2.19.tar.gz", "has_sig": false, "md5_digest": "d400d2d036d3b669fe742f670d24ad84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99482, "upload_time": "2015-04-23T04:25:09", "upload_time_iso_8601": "2015-04-23T04:25:09.570471Z", "url": "https://files.pythonhosted.org/packages/3d/04/68c7b1425accdeb26e4a351beee1549f55247d84178d3a26f31cdfdfd300/cvxpy-0.2.19.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "bbe50b5ae9731763962e9cfd5cf4f849", "sha256": "85c7a08f9a7d2a6e255528e8fbf475031e3e5a1483fc0c00e51d798230a4ae2d" }, "downloads": -1, "filename": "cvxpy-0.2.2.tar.gz", "has_sig": false, "md5_digest": "bbe50b5ae9731763962e9cfd5cf4f849", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77296, "upload_time": "2014-07-02T06:17:53", "upload_time_iso_8601": "2014-07-02T06:17:53.202534Z", "url": "https://files.pythonhosted.org/packages/b7/8e/2bc6d38c26737c0c33b06d0b3cf871046a4cc2bb7c7bd0f69ab1332059e7/cvxpy-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.20": [ { "comment_text": "", "digests": { "md5": "c7d10181f9d9708fc32a3f847b7d1db8", "sha256": "4903ecde96360ac080922587a783cd342117cb26d382b382b86d00fb813284c5" }, "downloads": -1, "filename": "cvxpy-0.2.20.tar.gz", "has_sig": false, "md5_digest": "c7d10181f9d9708fc32a3f847b7d1db8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107520, "upload_time": "2015-04-29T06:17:48", "upload_time_iso_8601": "2015-04-29T06:17:48.179637Z", "url": "https://files.pythonhosted.org/packages/a5/85/5d82df34b59565a02edebd7f5295fe3d17a061c1e16e8620da7ed27e7ed9/cvxpy-0.2.20.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.21": [ { "comment_text": "", "digests": { "md5": "5bff7e2f6343443d9de7a4044d7d28de", "sha256": "13128ab81b54d66a899decd54b4dfe5160dd186aca495e86fab08bdc50e783c4" }, "downloads": -1, "filename": "cvxpy-0.2.21.tar.gz", "has_sig": false, "md5_digest": "5bff7e2f6343443d9de7a4044d7d28de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112978, "upload_time": "2015-05-18T07:13:58", "upload_time_iso_8601": "2015-05-18T07:13:58.205636Z", "url": "https://files.pythonhosted.org/packages/f5/d6/4aa4288d9edcbedb504f1c63eddc7ec3209dd4f3d9512d960841d613dc83/cvxpy-0.2.21.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.22": [ { "comment_text": "", "digests": { "md5": "f9bb2fa79c2050e1d56123b84c61121d", "sha256": "81fb5ceb28a34e4074a4557465cc254a28a0f6fbaf57bf57c2e97e5403360531" }, "downloads": -1, "filename": "cvxpy-0.2.22.tar.gz", "has_sig": false, "md5_digest": "f9bb2fa79c2050e1d56123b84c61121d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112430, "upload_time": "2015-06-03T17:28:11", "upload_time_iso_8601": "2015-06-03T17:28:11.969974Z", "url": "https://files.pythonhosted.org/packages/d2/67/3cb14ebf4d27254aa7db153a24f9d9f07e4731849a2f5d028398571d1b8f/cvxpy-0.2.22.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.23": [ { "comment_text": "", "digests": { "md5": "cc86a4db757c78c8cbd81be9a184408a", "sha256": "13b9c01066e0c11773de6120ae0200ff10df56b7e5373c46cd26f2b6ed571784" }, "downloads": -1, "filename": "cvxpy-0.2.23.tar.gz", "has_sig": false, "md5_digest": "cc86a4db757c78c8cbd81be9a184408a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112885, "upload_time": "2015-06-10T01:44:14", "upload_time_iso_8601": "2015-06-10T01:44:14.398484Z", "url": "https://files.pythonhosted.org/packages/91/19/5050589b4dad9e378235abc9a383dad258e008a46499d25a0ec5aa3408c0/cvxpy-0.2.23.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.24": [ { "comment_text": "", "digests": { "md5": "343764205a6a669e97334b0198cdee71", "sha256": "cd69c8d293fc36264dedb00c18836f1715c2098c96f4d53f81fbde1ff01fc80c" }, "downloads": -1, "filename": "cvxpy-0.2.24.tar.gz", "has_sig": false, "md5_digest": "343764205a6a669e97334b0198cdee71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 119606, "upload_time": "2015-06-22T05:14:34", "upload_time_iso_8601": "2015-06-22T05:14:34.052620Z", "url": "https://files.pythonhosted.org/packages/c9/60/d0157e8584fececcabc1944e281a5db5d57981fb529ce4a2f0c7de06ca6a/cvxpy-0.2.24.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.25": [ { "comment_text": "", "digests": { "md5": "e3d7deb582f31499bbf6e80898cb7798", "sha256": "4077d97c5655e12f7c949546d7467943187d21dd447b8dd24a96f0426ab9fbb4" }, "downloads": -1, "filename": "cvxpy-0.2.25.tar.gz", "has_sig": false, "md5_digest": "e3d7deb582f31499bbf6e80898cb7798", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121709, "upload_time": "2015-07-15T17:58:11", "upload_time_iso_8601": "2015-07-15T17:58:11.093075Z", "url": "https://files.pythonhosted.org/packages/3c/fc/ad36f7b96f567220e06fd9a865f5c6a99c84b8730cb5f963803c14bd3470/cvxpy-0.2.25.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.26": [ { "comment_text": "", "digests": { "md5": "6f94bc54964fd5298830e412d2ded5e0", "sha256": "48bc7f5e80421a0223da3a04a013eeba4c7fd452753dcae7bdbcd63797bd50ae" }, "downloads": -1, "filename": "cvxpy-0.2.26.tar.gz", "has_sig": false, "md5_digest": "6f94bc54964fd5298830e412d2ded5e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125924, "upload_time": "2015-08-22T09:38:29", "upload_time_iso_8601": "2015-08-22T09:38:29.847629Z", "url": "https://files.pythonhosted.org/packages/75/43/135bb837a932dcb63515cae65361591de1fb9d698eaec58607f6b2648716/cvxpy-0.2.26.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.27": [ { "comment_text": "", "digests": { "md5": "f57cf8ededd133e0bb0744c9ac068ebf", "sha256": "1a8346ccdaf74f8a4049ac6675d3275403f5e6fef7d85dd7d1afbcecb23325a8" }, "downloads": -1, "filename": "cvxpy-0.2.27.tar.gz", "has_sig": false, "md5_digest": "f57cf8ededd133e0bb0744c9ac068ebf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125967, "upload_time": "2015-08-26T07:29:52", "upload_time_iso_8601": "2015-08-26T07:29:52.397355Z", "url": "https://files.pythonhosted.org/packages/92/e2/a0f3fa8aae7dce4eb0a9e90cd6b207c343d7ad9e2638b8a06b89a5f5e996/cvxpy-0.2.27.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.28": [ { "comment_text": "", "digests": { "md5": "e266c998fc2d3c7e1a1ca10f6281a30d", "sha256": "e7fc26a3010e8759cf1d03d691dc2c46060a3ad45d493d80f0ffc67bd9ce3464" }, "downloads": -1, "filename": "cvxpy-0.2.28.tar.gz", "has_sig": false, "md5_digest": "e266c998fc2d3c7e1a1ca10f6281a30d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126037, "upload_time": "2015-08-30T18:17:20", "upload_time_iso_8601": "2015-08-30T18:17:20.009956Z", "url": "https://files.pythonhosted.org/packages/61/18/084726d6d88f9a8ce417081cb8f5fedbefdbf43276bbc8552297d87220c1/cvxpy-0.2.28.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "a4d9e8404eb40728d5d9ed9ab9b2ff47", "sha256": "ba1c1b690a89f0ea697ac169694dda89ab367ca7b23bcf195fe3ab93d2d08a0a" }, "downloads": -1, "filename": "cvxpy-0.2.3.tar.gz", "has_sig": false, "md5_digest": "a4d9e8404eb40728d5d9ed9ab9b2ff47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77316, "upload_time": "2014-07-07T04:45:59", "upload_time_iso_8601": "2014-07-07T04:45:59.627674Z", "url": "https://files.pythonhosted.org/packages/eb/9b/67c9b97496e8dd4647d123a727892eedce67d8ede7f3eb866641f3655da1/cvxpy-0.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "186ed6bbab94e3b7a7d68d79c42c9324", "sha256": "43064dda1f30eb58bcbb123231fc4053ef12e95529399675bc55c65a03a5e117" }, "downloads": -1, "filename": "cvxpy-0.2.4.tar.gz", "has_sig": false, "md5_digest": "186ed6bbab94e3b7a7d68d79c42c9324", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77571, "upload_time": "2014-07-08T21:01:09", "upload_time_iso_8601": "2014-07-08T21:01:09.604490Z", "url": "https://files.pythonhosted.org/packages/82/a9/638d2ad107e47320921d1bc7b01b6794698bf6b0a947442e5a196d75fda4/cvxpy-0.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "f80b3ed6ca3267ef064134547116d3ab", "sha256": "741873f89ed2a7b2f8246da89a3a23a2364141023c2cafe29f8c4448203b77a6" }, "downloads": -1, "filename": "cvxpy-0.2.5.tar.gz", "has_sig": false, "md5_digest": "f80b3ed6ca3267ef064134547116d3ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78840, "upload_time": "2014-07-14T02:35:03", "upload_time_iso_8601": "2014-07-14T02:35:03.718096Z", "url": "https://files.pythonhosted.org/packages/b8/26/abe2cbc6b96e351e70e659f33f33095bd9c45b7d2586e7243077ea3d82d4/cvxpy-0.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "2f25d2e28635ef4da0902fd5c8e936a6", "sha256": "5e8b6aa1f5911ec742c5abf547023dab4f2274915d756364077bebb53b52c6e0" }, "downloads": -1, "filename": "cvxpy-0.2.6.tar.gz", "has_sig": false, "md5_digest": "2f25d2e28635ef4da0902fd5c8e936a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79073, "upload_time": "2014-08-01T05:11:51", "upload_time_iso_8601": "2014-08-01T05:11:51.004231Z", "url": "https://files.pythonhosted.org/packages/7a/f4/dfa154d429ad0eeab69fdb1fb5243053e4a25d0a9593a479c8422a8655d3/cvxpy-0.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "fcf98a7f534aaa74704da570f424d955", "sha256": "44cfed651f3467a4c7cd126c1185d74f69d926b1e4e6765d23a546039cb2a8f3" }, "downloads": -1, "filename": "cvxpy-0.2.7.tar.gz", "has_sig": false, "md5_digest": "fcf98a7f534aaa74704da570f424d955", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78960, "upload_time": "2014-08-06T18:45:09", "upload_time_iso_8601": "2014-08-06T18:45:09.365559Z", "url": "https://files.pythonhosted.org/packages/dd/5f/bfb39b21cf65505cc3024c83fab8d8230e68442ee4f0f0c1597799cc0b13/cvxpy-0.2.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "5b820dc72ea3d0b5d267a6d317b29e78", "sha256": "93077ce5104785c29b0b568f404d3aef22758e9cbb4aaeb6ba1bc39bfbef4dd2" }, "downloads": -1, "filename": "cvxpy-0.2.9.tar.gz", "has_sig": false, "md5_digest": "5b820dc72ea3d0b5d267a6d317b29e78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79939, "upload_time": "2014-08-10T21:08:03", "upload_time_iso_8601": "2014-08-10T21:08:03.556043Z", "url": "https://files.pythonhosted.org/packages/93/5d/23c1e6439343017a4e911411c67258e6e5ef1556601a65f26887b8467d4a/cvxpy-0.2.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "1fd3ef314a66b84c774bfc94fde168f5", "sha256": "58622eac28f2f12ab7f0f9ef6654cad8364e39a290f4053de2765056ab7bc673" }, "downloads": -1, "filename": "cvxpy-0.3.0.tar.gz", "has_sig": false, "md5_digest": "1fd3ef314a66b84c774bfc94fde168f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123559, "upload_time": "2015-09-15T00:09:23", "upload_time_iso_8601": "2015-09-15T00:09:23.322607Z", "url": "https://files.pythonhosted.org/packages/72/b3/ba381b983538b1f47fe5f6ffc63ddd0ac3e0b7798a8e250fcd70f0a6c08f/cvxpy-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "5d4c2a6862bbdd1cefb234786696900a", "sha256": "601e7ff981c545971035dbc59f6952b3779e5ece2b58db6c54c59b9c3a72c5c4" }, "downloads": -1, "filename": "cvxpy-0.3.1.tar.gz", "has_sig": false, "md5_digest": "5d4c2a6862bbdd1cefb234786696900a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124364, "upload_time": "2015-09-30T22:23:47", "upload_time_iso_8601": "2015-09-30T22:23:47.070687Z", "url": "https://files.pythonhosted.org/packages/a2/e0/75628c5f1a221c7f4a841c8a49ac5b5f9b747648c43ab7d9c348a06bf2e9/cvxpy-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "b28b08077e53066a582ad4464663fb08", "sha256": "c1fbd4c4f3fc0609af85e93047efeed1ba79ebfcd177d0f6de4fcd0ae59c16ec" }, "downloads": -1, "filename": "cvxpy-0.3.3.tar.gz", "has_sig": false, "md5_digest": "b28b08077e53066a582ad4464663fb08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125531, "upload_time": "2015-11-07T20:45:04", "upload_time_iso_8601": "2015-11-07T20:45:04.672518Z", "url": "https://files.pythonhosted.org/packages/dd/e4/b967f5ecbd675c7ef977fdbf8af905c38479df50a7f71ac1bafce4a594a8/cvxpy-0.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "227f4e6a3b7bd44a1bb95f5a3c84617f", "sha256": "da94327a0cd24ad48d84513cee0cbe076075acf6c805847f8648cd825be9ca5a" }, "downloads": -1, "filename": "cvxpy-0.3.4.tar.gz", "has_sig": false, "md5_digest": "227f4e6a3b7bd44a1bb95f5a3c84617f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126577, "upload_time": "2015-11-14T02:58:23", "upload_time_iso_8601": "2015-11-14T02:58:23.066095Z", "url": "https://files.pythonhosted.org/packages/68/87/4ee2e9ca53496106afb6196a4a1792a7d004ba95a518da945041f6d4334a/cvxpy-0.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "c881ac005f052365b74b80d073d713f8", "sha256": "f4fadda0c6c5dce47eb046fc8f735eb5ffd295423b2d65aba7c21c364c22c41d" }, "downloads": -1, "filename": "cvxpy-0.3.5.tar.gz", "has_sig": false, "md5_digest": "c881ac005f052365b74b80d073d713f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128278, "upload_time": "2015-12-25T01:21:06", "upload_time_iso_8601": "2015-12-25T01:21:06.060610Z", "url": "https://files.pythonhosted.org/packages/5d/4f/8feba62a76a3733fa9326f52170abcaa8d83cc8e579242812d923deb2be9/cvxpy-0.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "0917328851c570a13df5a9b7a2428d4e", "sha256": "d6a7e54c22e925da8c87733d63a4b14eb5c473ef5bc2396f41529b30c3f5a9d2" }, "downloads": -1, "filename": "cvxpy-0.3.6.tar.gz", "has_sig": false, "md5_digest": "0917328851c570a13df5a9b7a2428d4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129158, "upload_time": "2016-02-02T19:50:34", "upload_time_iso_8601": "2016-02-02T19:50:34.466572Z", "url": "https://files.pythonhosted.org/packages/c9/82/df6159cc7310e7856baf7597e4ea2da51a1a1a849ae71cbc66c39cee9dc1/cvxpy-0.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "5d1e6eb8fcbc8f30fb28258e3b08dac9", "sha256": "94a7dda04e9e68b443d1802c97e3db5222e67ab6e733b32810a2c4e05b1b290e" }, "downloads": -1, "filename": "cvxpy-0.3.7.tar.gz", "has_sig": false, "md5_digest": "5d1e6eb8fcbc8f30fb28258e3b08dac9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129276, "upload_time": "2016-02-08T04:26:55", "upload_time_iso_8601": "2016-02-08T04:26:55.690421Z", "url": "https://files.pythonhosted.org/packages/d9/06/ea30ef039001609800c3f316ac9557ec95b8650bff265dced7afe912bbac/cvxpy-0.3.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "01ca77e0701c2a934d382b5f9e14ad65", "sha256": "6212b46ad2662cc39d4c5e48841fbce190529dee69cd02729fea0ac93beab85d" }, "downloads": -1, "filename": "cvxpy-0.3.8.tar.gz", "has_sig": false, "md5_digest": "01ca77e0701c2a934d382b5f9e14ad65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 132330, "upload_time": "2016-03-03T18:32:09", "upload_time_iso_8601": "2016-03-03T18:32:09.694779Z", "url": "https://files.pythonhosted.org/packages/f4/51/395edb23868fccac0d8e913358be6cedd64fb907c3b985bac101c9839394/cvxpy-0.3.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "ef898ef280920ed51b8a0dc061e09aaa", "sha256": "bf45ab70142ba6984ebd86e99418e50eb44a1432011063f9bd4eb7dc36603d1d" }, "downloads": -1, "filename": "cvxpy-0.3.9.tar.gz", "has_sig": false, "md5_digest": "ef898ef280920ed51b8a0dc061e09aaa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 132760, "upload_time": "2016-04-05T22:11:06", "upload_time_iso_8601": "2016-04-05T22:11:06.046112Z", "url": "https://files.pythonhosted.org/packages/5d/a9/ab2df240615d6b3580e487cfd322055d0ab4dff38482422bbf9a8ad8e168/cvxpy-0.3.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "e7b0ce47b35a3f085fd440f88e9cab5a", "sha256": "6c2ee647ec9a735a886a9510ebe4ed6b5a63044f36d3bb186c9c3814af9c6efc" }, "downloads": -1, "filename": "cvxpy-0.4.0.tar.gz", "has_sig": false, "md5_digest": "e7b0ce47b35a3f085fd440f88e9cab5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 138165, "upload_time": "2016-04-26T19:24:45", "upload_time_iso_8601": "2016-04-26T19:24:45.299666Z", "url": "https://files.pythonhosted.org/packages/4a/10/79fd9e9b5cdd89abca9a89a9ba6c42292ced92976afce7a5de64102f16fd/cvxpy-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "e068a57aaff38d0c7396d68ee0d18075", "sha256": "000cda892eaf875c12947ae115526959880585a77c24f37ab141280a9d5f460b" }, "downloads": -1, "filename": "cvxpy-0.4.1.tar.gz", "has_sig": false, "md5_digest": "e068a57aaff38d0c7396d68ee0d18075", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 140776, "upload_time": "2016-06-05T23:11:54", "upload_time_iso_8601": "2016-06-05T23:11:54.818000Z", "url": "https://files.pythonhosted.org/packages/50/e8/c8b60521b96956f99b3b26eb42cfd1df8f902dc6c173cdcfc4d6544f1cf1/cvxpy-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.10": [ { "comment_text": "", "digests": { "md5": "ceb57c7ce5905f3526a3dbf53d7ae77f", "sha256": "a09f4f6e13d487917554872de630a6e47cd01e4b732309d3110473227f4c3226" }, "downloads": -1, "filename": "cvxpy-0.4.10-py2-none-any.whl", "has_sig": false, "md5_digest": "ceb57c7ce5905f3526a3dbf53d7ae77f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 298134, "upload_time": "2017-05-27T22:01:00", "upload_time_iso_8601": "2017-05-27T22:01:00.121496Z", "url": "https://files.pythonhosted.org/packages/3e/87/2dbe1161db417bb853cc13cdf7670e82e63fe947130457830676c072af92/cvxpy-0.4.10-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3fff1e06d8bd6a486a68025ac7ca5e8c", "sha256": "2e47bea09705ae47d7f56ade699596a24674d8ebc2c0e0ead4c02ceb117d1e92" }, "downloads": -1, "filename": "cvxpy-0.4.10-py3-none-any.whl", "has_sig": false, "md5_digest": "3fff1e06d8bd6a486a68025ac7ca5e8c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 298136, "upload_time": "2017-05-27T22:01:40", "upload_time_iso_8601": "2017-05-27T22:01:40.230121Z", "url": "https://files.pythonhosted.org/packages/6a/a0/07680b0fd54f3dcc45d25c70f842c67121dde8833f9d07ed5a53b73f59cf/cvxpy-0.4.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ba92bae4f3c7ff9ae86c30d3bdc32a5", "sha256": "3f5112bd42855943298cf2d85d2a42832e7ebdaf55e053a9e3d2db52a46f001b" }, "downloads": -1, "filename": "cvxpy-0.4.10.tar.gz", "has_sig": false, "md5_digest": "1ba92bae4f3c7ff9ae86c30d3bdc32a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 151803, "upload_time": "2017-05-08T00:28:47", "upload_time_iso_8601": "2017-05-08T00:28:47.899531Z", "url": "https://files.pythonhosted.org/packages/a6/d5/bfc8f7d428d98ac5ceec30b7c9340d8b4da7d430517523e42fa1212b5bd2/cvxpy-0.4.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.11": [ { "comment_text": "", "digests": { "md5": "a6698330b41a34b1ae0bd5ac8595c9e6", "sha256": "27b1291be48bed404f2b9267ab550ecd7afafeff8e577845d56f8f5aa349aaec" }, "downloads": -1, "filename": "cvxpy-0.4.11-py2-none-any.whl", "has_sig": false, "md5_digest": "a6698330b41a34b1ae0bd5ac8595c9e6", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 379393, "upload_time": "2017-08-22T22:54:45", "upload_time_iso_8601": "2017-08-22T22:54:45.011699Z", "url": "https://files.pythonhosted.org/packages/82/de/c058307f3a2f67d448609a319461acd2441f6cdf303c50e1fd60e80882b1/cvxpy-0.4.11-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34c687ccd1ace523e8080e2ab15bb0ea", "sha256": "7523651f2c9a7a8f3b8e87038d6869c8d7f2bfa74dd3aadc71735f07c2f6eed2" }, "downloads": -1, "filename": "cvxpy-0.4.11.tar.gz", "has_sig": false, "md5_digest": "34c687ccd1ace523e8080e2ab15bb0ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159385, "upload_time": "2017-08-22T22:54:47", "upload_time_iso_8601": "2017-08-22T22:54:47.438999Z", "url": "https://files.pythonhosted.org/packages/a7/52/d2928100c93e726acdbb793e4a3662d4c65ace58ca0ddd09463a172f7bed/cvxpy-0.4.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "2c418ceb2e26acbf50ab6929af6aa8e4", "sha256": "f253fb268888e16d9c187e730a33d92194a80b8773312c06458c0b630f553b99" }, "downloads": -1, "filename": "cvxpy-0.4.2.tar.gz", "has_sig": false, "md5_digest": "2c418ceb2e26acbf50ab6929af6aa8e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 145543, "upload_time": "2016-06-19T00:09:03", "upload_time_iso_8601": "2016-06-19T00:09:03.767552Z", "url": "https://files.pythonhosted.org/packages/e7/0b/b5d08d419314fb5f79628ec11c3615e9e93423f4980cde8046a74044b223/cvxpy-0.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "5f03697e6e2e75e5343769873aaa552d", "sha256": "bf8c06633a9484a5d8ab010f478c47b9cf40e7b546082e1c2d1eb4c8b9cb2a26" }, "downloads": -1, "filename": "cvxpy-0.4.3.tar.gz", "has_sig": false, "md5_digest": "5f03697e6e2e75e5343769873aaa552d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146422, "upload_time": "2016-08-09T00:22:54", "upload_time_iso_8601": "2016-08-09T00:22:54.783078Z", "url": "https://files.pythonhosted.org/packages/5a/c8/b761c7fbb096df4806d93d0a76a67ba0b6dc119bb77d10f79e964469b774/cvxpy-0.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "2c65e739777cdfcd6a22b703810dfffd", "sha256": "1aa4cdf12a683c0854fb69b5efed20b876f2b9f4b019a6761bd33e448ef1c76e" }, "downloads": -1, "filename": "cvxpy-0.4.4.tar.gz", "has_sig": false, "md5_digest": "2c65e739777cdfcd6a22b703810dfffd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147454, "upload_time": "2016-08-25T17:29:07", "upload_time_iso_8601": "2016-08-25T17:29:07.754081Z", "url": "https://files.pythonhosted.org/packages/f3/48/2b1dbeb78d7a8035bda45c44478618048be61f87df48a2e642d377477854/cvxpy-0.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "6b90de7880507c0583d5e789ca4ad193", "sha256": "6b6d1ab203b009efc2b779a81675bbae4e374be45e314fffde9f2ae1db6bb86e" }, "downloads": -1, "filename": "cvxpy-0.4.5.tar.gz", "has_sig": false, "md5_digest": "6b90de7880507c0583d5e789ca4ad193", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147917, "upload_time": "2016-08-31T17:32:38", "upload_time_iso_8601": "2016-08-31T17:32:38.397756Z", "url": "https://files.pythonhosted.org/packages/f5/c9/ac3c194d4ed7046f64dfc1bcc1dc7f83d7b4eb0fdf02a84ada15a53ba7ef/cvxpy-0.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "0f5bfc6f0c94defd020ff099617f5a72", "sha256": "7d0257eda59dcdb7e7e7e2b32fd589c5c6424bd799fc83e8d6aa4c76bea0e2b8" }, "downloads": -1, "filename": "cvxpy-0.4.6.tar.gz", "has_sig": false, "md5_digest": "0f5bfc6f0c94defd020ff099617f5a72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149473, "upload_time": "2016-10-19T18:01:36", "upload_time_iso_8601": "2016-10-19T18:01:36.778302Z", "url": "https://files.pythonhosted.org/packages/ef/13/e3cb83bcdc6f326c9ec08b1365eda13bef4fe4b36e554675a84dba2b191b/cvxpy-0.4.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "e09f01194cc379894be166c923cc24c6", "sha256": "32c35935d5d9727d777eeaacb70369a9f3db835fd1e524ba59efc5946a3c87b0" }, "downloads": -1, "filename": "cvxpy-0.4.8.tar.gz", "has_sig": false, "md5_digest": "e09f01194cc379894be166c923cc24c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149663, "upload_time": "2016-10-29T22:40:42", "upload_time_iso_8601": "2016-10-29T22:40:42.164592Z", "url": "https://files.pythonhosted.org/packages/c3/92/b209cc278c5b5b23667524fb8f4ac9ece39248bdf65380406e407ead50ef/cvxpy-0.4.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "6290df1de97772954bfc50e21c222424", "sha256": "9f9ec16d9bd607e76fe9e67041ffc2bb12767f1b3e40f19408010b2d1d0f1c24" }, "downloads": -1, "filename": "cvxpy-0.4.9.tar.gz", "has_sig": false, "md5_digest": "6290df1de97772954bfc50e21c222424", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 151268, "upload_time": "2017-03-13T16:12:32", "upload_time_iso_8601": "2017-03-13T16:12:32.950917Z", "url": "https://files.pythonhosted.org/packages/ee/6e/6966596631c99a2d4f8c42b97dbaecf4ff81e090fc9bfe0937d98e5d0502/cvxpy-0.4.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.10": [ { "comment_text": "", "digests": { "md5": "833497bc9e3306fa9b3c880932c38cd7", "sha256": "bd362f638c661cd532451948892647580d8726d5b70b557cdca3ebb993a23282" }, "downloads": -1, "filename": "cvxpy-1.0.10.tar.gz", "has_sig": false, "md5_digest": "833497bc9e3306fa9b3c880932c38cd7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 900149, "upload_time": "2018-10-16T18:39:03", "upload_time_iso_8601": "2018-10-16T18:39:03.468653Z", "url": "https://files.pythonhosted.org/packages/76/3c/4314c56be5b069f4d542046912d503a07c96b42c0b075ef0e32b48f8579f/cvxpy-1.0.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.11": [ { "comment_text": "", "digests": { "md5": "5193e217d5c22544a5ebb500e2fe3298", "sha256": "2bb602a25bdef9942c8600b8d0d82868f6789b0c855e2777a93f9bd7b53efb31" }, "downloads": -1, "filename": "cvxpy-1.0.11.tar.gz", "has_sig": false, "md5_digest": "5193e217d5c22544a5ebb500e2fe3298", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 913501, "upload_time": "2018-12-14T20:20:14", "upload_time_iso_8601": "2018-12-14T20:20:14.740758Z", "url": "https://files.pythonhosted.org/packages/71/70/897a33cdd574653f11e1c0be558672b7a37152bb8c8a96c1d8e17957583e/cvxpy-1.0.11.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.12": [ { "comment_text": "", "digests": { "md5": "61e5079eb3119d91db912cacf86094a0", "sha256": "162953126e17ad5b8d678761c1ba387597b5dde8d6cd3d2aad92b5577a92ba7d" }, "downloads": -1, "filename": "cvxpy-1.0.12.tar.gz", "has_sig": false, "md5_digest": "61e5079eb3119d91db912cacf86094a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 913765, "upload_time": "2019-01-15T02:29:26", "upload_time_iso_8601": "2019-01-15T02:29:26.410236Z", "url": "https://files.pythonhosted.org/packages/18/a4/7470ffe039b3a8464f3e79958293a77ef222ca587c2df514aa4f055fac60/cvxpy-1.0.12.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.13": [ { "comment_text": "", "digests": { "md5": "2cebe8059a1dbed74f968a127eaa72c5", "sha256": "de1ff5e6e16bb1ee01d52e1f627fbe3e8d3b1681fabe4dd4c7316260fabc30b5" }, "downloads": -1, "filename": "cvxpy-1.0.13.tar.gz", "has_sig": false, "md5_digest": "2cebe8059a1dbed74f968a127eaa72c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 913653, "upload_time": "2019-01-23T03:02:39", "upload_time_iso_8601": "2019-01-23T03:02:39.333959Z", "url": "https://files.pythonhosted.org/packages/8d/8f/596ea240035c278495932b7685f001106f374102b9b824829f67dede69fa/cvxpy-1.0.13.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.14": [ { "comment_text": "", "digests": { "md5": "7d0747654bb305c31b0f7aabd4900b5d", "sha256": "5bb2e641945386107842d2a026763dcfc0b09964dc4beecb5da709f46c930b86" }, "downloads": -1, "filename": "cvxpy-1.0.14.tar.gz", "has_sig": false, "md5_digest": "7d0747654bb305c31b0f7aabd4900b5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 913978, "upload_time": "2019-01-24T02:19:09", "upload_time_iso_8601": "2019-01-24T02:19:09.906128Z", "url": "https://files.pythonhosted.org/packages/dc/bb/4f7e6f9d4e4312283bdceb3f2d2f12e348e0001745261da296a8eaf2ca92/cvxpy-1.0.14.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.15": [ { "comment_text": "", "digests": { "md5": "2b244bec800940ec0f37410ed0995cf4", "sha256": "dff246a3fa03fe5c815f290825345a6ad5ff49df5e1882f123e632a4217bbcd1" }, "downloads": -1, "filename": "cvxpy-1.0.15.tar.gz", "has_sig": false, "md5_digest": "2b244bec800940ec0f37410ed0995cf4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 915395, "upload_time": "2019-02-13T07:48:55", "upload_time_iso_8601": "2019-02-13T07:48:55.237505Z", "url": "https://files.pythonhosted.org/packages/ab/6f/bcab45a432befe375f056ea31a7cc9c7468d07922768cb63c3dec5733afa/cvxpy-1.0.15.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.16": [ { "comment_text": "", "digests": { "md5": "b120f2e47fa961ad7a0805d2cc48558b", "sha256": "2d01b8007aa439bbca0293fae01b1ac36924508089acba095c0b38000d548514" }, "downloads": -1, "filename": "cvxpy-1.0.16.tar.gz", "has_sig": false, "md5_digest": "b120f2e47fa961ad7a0805d2cc48558b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 915906, "upload_time": "2019-02-20T22:02:59", "upload_time_iso_8601": "2019-02-20T22:02:59.919539Z", "url": "https://files.pythonhosted.org/packages/49/55/7fe7ebff44facb70f050587916c92dea0cf59506e19ea97ccbe36e2e21ec/cvxpy-1.0.16.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.17": [ { "comment_text": "", "digests": { "md5": "4cf77ba8126588d5a8fe404eb83297f4", "sha256": "f7ee6f8fa5521d487f55a75bbf1f8f4de30f02173b8be7d34ebcc29bb2bc2b8c" }, "downloads": -1, "filename": "cvxpy-1.0.17.tar.gz", "has_sig": false, "md5_digest": "4cf77ba8126588d5a8fe404eb83297f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 916743, "upload_time": "2019-02-21T07:51:38", "upload_time_iso_8601": "2019-02-21T07:51:38.317658Z", "url": "https://files.pythonhosted.org/packages/93/d5/7ba9098732bc7dc784ca1949ea8866c58026fa4da761cee27d5fe109f957/cvxpy-1.0.17.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.18": [ { "comment_text": "", "digests": { "md5": "94aea327a7c10d451cbf75161cef049f", "sha256": "9ea0858d22c76f59dfad0ff47c224ada72c2cd89f65870ed4c9873c14aa4999d" }, "downloads": -1, "filename": "cvxpy-1.0.18.tar.gz", "has_sig": false, "md5_digest": "94aea327a7c10d451cbf75161cef049f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 916964, "upload_time": "2019-02-21T20:28:23", "upload_time_iso_8601": "2019-02-21T20:28:23.272837Z", "url": "https://files.pythonhosted.org/packages/e3/60/78816756274975db2bd3f47288a0ee9ddaf194b2146048edd8182df4a85d/cvxpy-1.0.18.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.19": [ { "comment_text": "", "digests": { "md5": "cac50e9c0e46766a88511d1c81b90115", "sha256": "ca8a53f54c117715a4f0a3a2b2d22fa691966367fdcef5a36f84978bc1d15b20" }, "downloads": -1, "filename": "cvxpy-1.0.19.tar.gz", "has_sig": false, "md5_digest": "cac50e9c0e46766a88511d1c81b90115", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 917044, "upload_time": "2019-02-28T22:31:04", "upload_time_iso_8601": "2019-02-28T22:31:04.498809Z", "url": "https://files.pythonhosted.org/packages/37/c2/b42ea6172165163bb5373e761fee18f1e7d3c37834679c6a4afdaae1d401/cvxpy-1.0.19.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "a62b529de0dd89926daec12bd2f30a40", "sha256": "32d4cd1297fef4a981781667feece1bebb1c4aae4187fbc7e24a39d67e7f02e9" }, "downloads": -1, "filename": "cvxpy-1.0.2.tar.gz", "has_sig": false, "md5_digest": "a62b529de0dd89926daec12bd2f30a40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 303400, "upload_time": "2018-05-17T16:23:26", "upload_time_iso_8601": "2018-05-17T16:23:26.231578Z", "url": "https://files.pythonhosted.org/packages/3f/86/f755cfc542b62378b5449f37553c2c54796c7433e8365cccbbac270ff0e9/cvxpy-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.20": [ { "comment_text": "", "digests": { "md5": "43596f36bdc5ab49638b1fb8d3a78ddb", "sha256": "cdb2bb1c3b566cc7d907c1bdef1985e965f542799acd0f6e33f49377b2cbfc8a" }, "downloads": -1, "filename": "cvxpy-1.0.20.tar.gz", "has_sig": false, "md5_digest": "43596f36bdc5ab49638b1fb8d3a78ddb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 917229, "upload_time": "2019-03-07T19:33:31", "upload_time_iso_8601": "2019-03-07T19:33:31.640155Z", "url": "https://files.pythonhosted.org/packages/0e/ae/460119a6dd64f3db8ba7f91f1941631c146adcbaccf5ab8f95bce5dae04c/cvxpy-1.0.20.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.21": [ { "comment_text": "", "digests": { "md5": "c0aea2cdfcbc215c698de3491d5df3f6", "sha256": "bb9b31e9bc97f739f1e3a49311aad4c89d087bae1980bc32b32d9ec5dacb0d86" }, "downloads": -1, "filename": "cvxpy-1.0.21.tar.gz", "has_sig": false, "md5_digest": "c0aea2cdfcbc215c698de3491d5df3f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 917299, "upload_time": "2019-03-07T23:35:47", "upload_time_iso_8601": "2019-03-07T23:35:47.938190Z", "url": "https://files.pythonhosted.org/packages/82/d5/0b787694c85297e36d3afd4c8574973809a7cc52aa2c602413012da8999d/cvxpy-1.0.21.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.22": [ { "comment_text": "", "digests": { "md5": "6225e9e820d8b3a6faad907e4ce0966f", "sha256": "15be5ed1f6db08e0e81404894ee4030df4206bc8edf32ff899290caa07a814fe" }, "downloads": -1, "filename": "cvxpy-1.0.22.tar.gz", "has_sig": false, "md5_digest": "6225e9e820d8b3a6faad907e4ce0966f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 913330, "upload_time": "2019-05-12T20:18:19", "upload_time_iso_8601": "2019-05-12T20:18:19.459143Z", "url": "https://files.pythonhosted.org/packages/2d/e0/7c6e1276b23bf1547a158ae3bdf99071550e3e7e18c59ffe8a8be0a88b91/cvxpy-1.0.22.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.23": [ { "comment_text": "", "digests": { "md5": "6a2441090f766e93de6f834faca360d9", "sha256": "6ae89ed0e39c52e81ed7fdf74b4bd364101e8f87b50ff38f2170d8ad29224e99" }, "downloads": -1, "filename": "cvxpy-1.0.23-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6a2441090f766e93de6f834faca360d9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 619853, "upload_time": "2019-05-31T05:35:31", "upload_time_iso_8601": "2019-05-31T05:35:31.694118Z", "url": "https://files.pythonhosted.org/packages/46/cc/ab8f283ef32daab1035132c8d70e65ac4923c6db47a77824c6980c39ddb5/cvxpy-1.0.23-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "306bc466514f4a4a17f206067789c9bb", "sha256": "29ac33bb2d797fa391ca2d46fe1c7a819fc5655f39e0e073993fec90f53c934a" }, "downloads": -1, "filename": "cvxpy-1.0.23-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "306bc466514f4a4a17f206067789c9bb", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1252642, "upload_time": "2019-05-31T05:35:33", "upload_time_iso_8601": "2019-05-31T05:35:33.799529Z", "url": "https://files.pythonhosted.org/packages/78/e5/4b2b8ae7550805f7c2ce6c1683537fa92c8c7e1dd5b42acce7157d4b1c6f/cvxpy-1.0.23-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3069e6a98989e00d2d4df0d0b28a5dd0", "sha256": "e5a80c49f0d735e7a13b6fbc259f856df82e8d9708799cb1b8bc50b4532f4518" }, "downloads": -1, "filename": "cvxpy-1.0.23.tar.gz", "has_sig": false, "md5_digest": "3069e6a98989e00d2d4df0d0b28a5dd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 913176, "upload_time": "2019-05-20T18:12:22", "upload_time_iso_8601": "2019-05-20T18:12:22.357839Z", "url": "https://files.pythonhosted.org/packages/8a/f1/7ddf7125d0a5c300d8432196a8566800add0890db488179da50a1c713094/cvxpy-1.0.23.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.24": [ { "comment_text": "", "digests": { "md5": "e2e3193c4a7969c0b261dff702ce1b3c", "sha256": "13fd80967d306c0c9959304fd633d3e494fa3b82f01e455bf18d7ceeb7f5b6c7" }, "downloads": -1, "filename": "cvxpy-1.0.24-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "e2e3193c4a7969c0b261dff702ce1b3c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 669737, "upload_time": "2019-07-08T18:39:37", "upload_time_iso_8601": "2019-07-08T18:39:37.835060Z", "url": "https://files.pythonhosted.org/packages/3c/da/9fe22f3fcd78e27b6325020d62ea0126bb46dd3fa8679b41fcffde4a2c77/cvxpy-1.0.24-cp27-cp27m-macosx_10_6_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6aef1ed8828d997f9ee50d3e2841e483", "sha256": "faee66f3da014226829ab9b724674c6378a6e7bf57b6223bda1acf6878ef9e32" }, "downloads": -1, "filename": "cvxpy-1.0.24-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "6aef1ed8828d997f9ee50d3e2841e483", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 670788, "upload_time": "2019-07-08T18:46:32", "upload_time_iso_8601": "2019-07-08T18:46:32.200570Z", "url": "https://files.pythonhosted.org/packages/8d/4f/87c9df25e43abf1fd10ad4ecea93fc2861af7b1b4249193ac5049c595872/cvxpy-1.0.24-cp36-cp36m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74ffc933a4f6ab3f2c87c5e45329f0ce", "sha256": "7a37f30bf62bf2d521bbfd934aa38af718638960c837afa051b088c059e23e88" }, "downloads": -1, "filename": "cvxpy-1.0.24-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "74ffc933a4f6ab3f2c87c5e45329f0ce", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 619852, "upload_time": "2019-05-31T20:27:32", "upload_time_iso_8601": "2019-05-31T20:27:32.138135Z", "url": "https://files.pythonhosted.org/packages/8c/34/39c087b7e4003d84ea8543ddcd11b0bb8aa490373736e8d78ae5d10592e7/cvxpy-1.0.24-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4c4ace86c763c893b2373b3db5d260d", "sha256": "1b2d3717919841b3a155db462923847a279fcf270a2895145fe43873e41fe6ad" }, "downloads": -1, "filename": "cvxpy-1.0.24-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "a4c4ace86c763c893b2373b3db5d260d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 670785, "upload_time": "2019-07-08T18:46:27", "upload_time_iso_8601": "2019-07-08T18:46:27.635125Z", "url": "https://files.pythonhosted.org/packages/31/1d/3a40c544de8cddbd943e955758e58bf12b5ce871ec989fdbff54fc97af43/cvxpy-1.0.24-cp37-cp37m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5bd73a0a3fe0c9ae12a37ef880d20d6", "sha256": "d3643b915a195ef20c90aaf7a974e9df6a6831467f1aa7e64bb0bb3c9cb6df41" }, "downloads": -1, "filename": "cvxpy-1.0.24-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c5bd73a0a3fe0c9ae12a37ef880d20d6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 620482, "upload_time": "2019-07-08T18:48:47", "upload_time_iso_8601": "2019-07-08T18:48:47.655344Z", "url": "https://files.pythonhosted.org/packages/8c/cf/a5a98f2828a5436f2882a73f21ca37e7b4a3b2482b5930d95161e3ad6453/cvxpy-1.0.24-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bda526f7033c3b4e1b8f53cab1470c81", "sha256": "d2297643a9223decaed6ea12b3913cf01c4aa659ac4b046a76360d7752447cbe" }, "downloads": -1, "filename": "cvxpy-1.0.24-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "bda526f7033c3b4e1b8f53cab1470c81", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1252249, "upload_time": "2019-05-31T20:27:34", "upload_time_iso_8601": "2019-05-31T20:27:34.256768Z", "url": "https://files.pythonhosted.org/packages/33/c2/aa371224f42182c31d219bb370923618af50162d7631cddb56086e43839c/cvxpy-1.0.24-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e1007e79491c78e1c793b62967e4d34", "sha256": "645054acbbcc39a9bd851582224c38db141a98a1386bcc28d88019e95c920ccd" }, "downloads": -1, "filename": "cvxpy-1.0.24-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "4e1007e79491c78e1c793b62967e4d34", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 1255375, "upload_time": "2019-07-08T18:48:49", "upload_time_iso_8601": "2019-07-08T18:48:49.650714Z", "url": "https://files.pythonhosted.org/packages/91/b8/9243782548048ec1fe44b28519280b4b64a1da5da1f3a0b1fa3979c332d1/cvxpy-1.0.24-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca9424aca7c11f7634d80e2fce789861", "sha256": "4aa7fc03707fccc673bd793572cc5b950ebd304c478cd9c0b6d53ccf7186a3f1" }, "downloads": -1, "filename": "cvxpy-1.0.24.tar.gz", "has_sig": false, "md5_digest": "ca9424aca7c11f7634d80e2fce789861", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 913623, "upload_time": "2019-06-01T18:23:57", "upload_time_iso_8601": "2019-06-01T18:23:57.404668Z", "url": "https://files.pythonhosted.org/packages/b4/30/6eccf2333854e42591697e1950b1925384cb4080f302b1ddd11cd8103dd9/cvxpy-1.0.24.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.25": [ { "comment_text": "", "digests": { "md5": "bc4e0cbbda9f367127a01af08d9f751e", "sha256": "957e0c0e65d9f2cf25eb9e7aca0c518158047a27de2aaa69e9177e2ea23dbd68" }, "downloads": -1, "filename": "cvxpy-1.0.25-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "bc4e0cbbda9f367127a01af08d9f751e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 675265, "upload_time": "2019-08-21T21:11:39", "upload_time_iso_8601": "2019-08-21T21:11:39.585734Z", "url": "https://files.pythonhosted.org/packages/d9/02/4c35f98c6421965833a4f5e9f7b4b1d97f169a4b910ead58c130b9f864f2/cvxpy-1.0.25-cp27-cp27m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ead7f38f9198ce608a922ed60cffd233", "sha256": "c2400927cceb170f96c1c97ad7faacaf92e941bbddb06b837d4d51fedbd7b192" }, "downloads": -1, "filename": "cvxpy-1.0.25-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "ead7f38f9198ce608a922ed60cffd233", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 676329, "upload_time": "2019-08-21T21:19:45", "upload_time_iso_8601": "2019-08-21T21:19:45.615121Z", "url": "https://files.pythonhosted.org/packages/09/a4/bd2585aa6024393fe4ed9346a9b66500e8e0e054d0ff4356c094fb7fbf41/cvxpy-1.0.25-cp36-cp36m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7938ae53e51630f99a7a1c8fc750a172", "sha256": "49e38e033a51f7df3a48b6b2c2879d56ae11bc628defbf1dc11e02836ceda1c5" }, "downloads": -1, "filename": "cvxpy-1.0.25-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7938ae53e51630f99a7a1c8fc750a172", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 676328, "upload_time": "2019-08-21T21:33:49", "upload_time_iso_8601": "2019-08-21T21:33:49.934517Z", "url": "https://files.pythonhosted.org/packages/36/6e/628710ad996da232814bbcfce9984e1bb12683504e9fff7e0fe9ebc97785/cvxpy-1.0.25-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf872002c1c08e38f9d956179d2081e1", "sha256": "8535529ddb807067b0d59661dce1d9a6ddb2a218398a38ea7772328ad8a6ea13" }, "downloads": -1, "filename": "cvxpy-1.0.25.tar.gz", "has_sig": false, "md5_digest": "cf872002c1c08e38f9d956179d2081e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 906125, "upload_time": "2019-08-21T21:18:51", "upload_time_iso_8601": "2019-08-21T21:18:51.437265Z", "url": "https://files.pythonhosted.org/packages/d9/ed/90e0a13ad7ac4e7cdc2aeaefed26cebb4922f205bb778199268863fa2fbe/cvxpy-1.0.25.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.26": [ { "comment_text": "", "digests": { "md5": "a2f6f3cd1fa5ad49244a65a01846a6ed", "sha256": "3835af9e721752243e99a24b84e808b64b311fec803cd9931be21b52262aaf3a" }, "downloads": -1, "filename": "cvxpy-1.0.26-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "a2f6f3cd1fa5ad49244a65a01846a6ed", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 744633, "upload_time": "2020-02-21T17:10:59", "upload_time_iso_8601": "2020-02-21T17:10:59.369527Z", "url": "https://files.pythonhosted.org/packages/da/8f/8d6e96e70313f42531fa1efa773920b2a650a1b1ea684d97b5fed955e523/cvxpy-1.0.26-cp27-cp27m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c01661d9f66518789b9271b5ca6570ae", "sha256": "2ec54607b982fccb277a230e7fb067444be98d117ea9b31b4c7a5e68ce241dc4" }, "downloads": -1, "filename": "cvxpy-1.0.26-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c01661d9f66518789b9271b5ca6570ae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 745628, "upload_time": "2020-02-21T18:46:41", "upload_time_iso_8601": "2020-02-21T18:46:41.989418Z", "url": "https://files.pythonhosted.org/packages/3c/03/73a9def0e929c1e9fa3da65c9a92a21265b08c649598566f17f28367223c/cvxpy-1.0.26-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82b49a2844a4563118f01b93e89edea2", "sha256": "7883f53f8e83ca55991248ef70395b79f7b03da90c3ba41ed62857d91d4f182a" }, "downloads": -1, "filename": "cvxpy-1.0.26-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "82b49a2844a4563118f01b93e89edea2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 697445, "upload_time": "2020-02-21T18:41:31", "upload_time_iso_8601": "2020-02-21T18:41:31.704701Z", "url": "https://files.pythonhosted.org/packages/73/12/2b28970ed1d1999320b9d02c2a63452397bd4a32b7638a544c1d4c755aed/cvxpy-1.0.26-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd3fc9ceb1a17960fa8d6afc732f8d1b", "sha256": "6f8b6de0aeba677ec3bd3c45beac9eb6ae3ab04b6745514829eb41ea1fea2b09" }, "downloads": -1, "filename": "cvxpy-1.0.26-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bd3fc9ceb1a17960fa8d6afc732f8d1b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 745629, "upload_time": "2020-02-21T18:48:52", "upload_time_iso_8601": "2020-02-21T18:48:52.360717Z", "url": "https://files.pythonhosted.org/packages/b8/a7/2c7ba0848dff9ae2f81312af2b46ebb1ed971d066eec63461687f0535068/cvxpy-1.0.26-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a0501818391d23a37060d86f861292b", "sha256": "db35a4e8485bb89e740a7d263858477981f29c4ad52431e54bd015d375a3948f" }, "downloads": -1, "filename": "cvxpy-1.0.26-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1a0501818391d23a37060d86f861292b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 695322, "upload_time": "2020-02-21T18:45:32", "upload_time_iso_8601": "2020-02-21T18:45:32.897561Z", "url": "https://files.pythonhosted.org/packages/e2/05/836fd451832a64db604721e814f8689b3035a5ca73d8829d1e7af8389844/cvxpy-1.0.26-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34665b4ebd19b0eb4295fec10b514973", "sha256": "80fce7ff322b40f6862f02f121b9eaddc0ba17b7b0df351789e60802aa23728a" }, "downloads": -1, "filename": "cvxpy-1.0.26-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "34665b4ebd19b0eb4295fec10b514973", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1418262, "upload_time": "2020-02-21T18:41:33", "upload_time_iso_8601": "2020-02-21T18:41:33.657360Z", "url": "https://files.pythonhosted.org/packages/5b/00/cb204097d2352070ef940d05b44fa95df4be4af2796b2e45240b05cc06f3/cvxpy-1.0.26-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf6964135eab5813451c62ebffe06529", "sha256": "d9251f70ab54c91e4a4dada0138a5e28b26ca224dbf151de4e7df10e8b8fdd6c" }, "downloads": -1, "filename": "cvxpy-1.0.26-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "bf6964135eab5813451c62ebffe06529", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 1416203, "upload_time": "2020-02-21T18:45:34", "upload_time_iso_8601": "2020-02-21T18:45:34.804506Z", "url": "https://files.pythonhosted.org/packages/3f/c0/8a54680a46d58e3d041be78892eb53c421727719257eae1bfde29408f085/cvxpy-1.0.26-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "259a0b42c2edcd4749bc6ef77453a3f5", "sha256": "d3b6b67375e9cc2fbb38bcfed9e55b506179bfcb52e15be9b69b05caf894b3bc" }, "downloads": -1, "filename": "cvxpy-1.0.26.tar.gz", "has_sig": false, "md5_digest": "259a0b42c2edcd4749bc6ef77453a3f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 947177, "upload_time": "2020-02-21T18:45:39", "upload_time_iso_8601": "2020-02-21T18:45:39.072954Z", "url": "https://files.pythonhosted.org/packages/02/54/6b6f1b1833aaff28a00dddc9eca6ebe1aec6188215a62481a9f23e8c6f2d/cvxpy-1.0.26.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.27": [ { "comment_text": "", "digests": { "md5": "6b4c1cccc7fc400def68e753444e40bc", "sha256": "c9701e70de3f329caf3e58df0ea84adef1d370af3bf531fc12a6f2aa1b43c046" }, "downloads": -1, "filename": "cvxpy-1.0.27-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "6b4c1cccc7fc400def68e753444e40bc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 744831, "upload_time": "2020-02-24T21:54:24", "upload_time_iso_8601": "2020-02-24T21:54:24.143722Z", "url": "https://files.pythonhosted.org/packages/ea/82/1f30077a48f8f3af869bc38b25f00c0e2e712c084b11f7ffd6843d42c869/cvxpy-1.0.27-cp27-cp27m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "edd658a96e333ef03706b0f22eaca508", "sha256": "c039a6db3200e4cdf4d72e2b13e4ee65f3ae305e3ebaedcf93545de11caeef69" }, "downloads": -1, "filename": "cvxpy-1.0.27-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "edd658a96e333ef03706b0f22eaca508", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 745821, "upload_time": "2020-02-24T22:03:20", "upload_time_iso_8601": "2020-02-24T22:03:20.400035Z", "url": "https://files.pythonhosted.org/packages/e7/7c/8a2150003a5169533df0580a30e054f925368e2182e48254b8947bf4ddb6/cvxpy-1.0.27-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42fdaddda25a670c247d41cd84c330db", "sha256": "2c80b0aea621b2c4599af6e3103a68939fab8b0fbb5ba9765e37a84f048dba86" }, "downloads": -1, "filename": "cvxpy-1.0.27-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "42fdaddda25a670c247d41cd84c330db", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 697641, "upload_time": "2020-02-24T22:01:23", "upload_time_iso_8601": "2020-02-24T22:01:23.690442Z", "url": "https://files.pythonhosted.org/packages/2c/60/4568105a73e511babfdef24247666daba394628dc98fa3514c49b6f326bb/cvxpy-1.0.27-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00f53f3737ea5e42fb57e205c48c9f09", "sha256": "1ae4a89329122a711c370326253a000a9d47f28c52a29985c87a66d023c20c44" }, "downloads": -1, "filename": "cvxpy-1.0.27-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "00f53f3737ea5e42fb57e205c48c9f09", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 745822, "upload_time": "2020-02-24T22:10:13", "upload_time_iso_8601": "2020-02-24T22:10:13.794380Z", "url": "https://files.pythonhosted.org/packages/df/ef/c05ee06ce6b544d73e08b37e25b0acc86d3fa79a65e857cf28f7d1f8d693/cvxpy-1.0.27-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23d8c78dff57d8cd5c60b2277fd47383", "sha256": "a3d9a6ae43a78ad6ebbf3ffbf43b3e817b16d7576565715b6279d1287eb317f1" }, "downloads": -1, "filename": "cvxpy-1.0.27-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "23d8c78dff57d8cd5c60b2277fd47383", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 695516, "upload_time": "2020-02-24T22:05:44", "upload_time_iso_8601": "2020-02-24T22:05:44.317375Z", "url": "https://files.pythonhosted.org/packages/1e/ec/973183128642ef189468b1684f90b06a8d8e9274203e1e8fd4ebc62e477e/cvxpy-1.0.27-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44912d68f062d4246ab0108274bc7e21", "sha256": "ef9a22447a7f94523b11b4d6c056e72f9aaa72f91cc4b5e8026c89d5c94a9e13" }, "downloads": -1, "filename": "cvxpy-1.0.27-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "44912d68f062d4246ab0108274bc7e21", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1418379, "upload_time": "2020-02-24T22:01:25", "upload_time_iso_8601": "2020-02-24T22:01:25.559054Z", "url": "https://files.pythonhosted.org/packages/91/e3/264b392489df36bba6cafb88aaaca4700d4d7b39518343282bb5b8dabb31/cvxpy-1.0.27-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdfb59ae85658ab3f633424de8bf5f10", "sha256": "e7a13ce35d813a2d984a6475a5d060a4a545db68862206ae4ffc53d65e482c56" }, "downloads": -1, "filename": "cvxpy-1.0.27-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "bdfb59ae85658ab3f633424de8bf5f10", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 1416630, "upload_time": "2020-02-24T22:05:46", "upload_time_iso_8601": "2020-02-24T22:05:46.493719Z", "url": "https://files.pythonhosted.org/packages/d1/7b/823ab2fe9c2d17727d818500277a9372a650f34374cd8ce6b5146619727b/cvxpy-1.0.27-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28aa455d3dce785b2ce6667fad86e111", "sha256": "e7c61b6f312cc1e5e25783378b4f6c0ff70f682b5226c5b3054a6d6f72a0e757" }, "downloads": -1, "filename": "cvxpy-1.0.27.tar.gz", "has_sig": false, "md5_digest": "28aa455d3dce785b2ce6667fad86e111", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 947360, "upload_time": "2020-02-24T22:02:22", "upload_time_iso_8601": "2020-02-24T22:02:22.629237Z", "url": "https://files.pythonhosted.org/packages/89/ea/d94c165ea247d04726e1d6d9d61985ceabc072dd7a719a8b5308e059b08a/cvxpy-1.0.27.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.28": [ { "comment_text": "", "digests": { "md5": "8f56633bf3d07a0a29c79e888906b4c9", "sha256": "43617b721a9a805f0479dbd50983c43430ea07eeab1149757f30b9c76f03ec0b" }, "downloads": -1, "filename": "cvxpy-1.0.28-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "8f56633bf3d07a0a29c79e888906b4c9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 744926, "upload_time": "2020-02-24T23:49:33", "upload_time_iso_8601": "2020-02-24T23:49:33.417563Z", "url": "https://files.pythonhosted.org/packages/ea/37/f59659e48631bb933d9f4b7251287465dc5cc793ac0c3b2ae31f338fae34/cvxpy-1.0.28-cp27-cp27m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf25fe74dd33cf0e5fff1069b69e5157", "sha256": "6cff1816ba67b743da01ce6b395049b5f6d34cd785c74ea673763a950d62635a" }, "downloads": -1, "filename": "cvxpy-1.0.28-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bf25fe74dd33cf0e5fff1069b69e5157", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 745923, "upload_time": "2020-02-24T23:58:20", "upload_time_iso_8601": "2020-02-24T23:58:20.532713Z", "url": "https://files.pythonhosted.org/packages/a4/d6/e1bb211690eafafe1886d34e4a3eef9eaa5bfb719dbbc88fa90d5dc6cfb2/cvxpy-1.0.28-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "043d782573fcb5ab420c1819d72a9d8c", "sha256": "412ea6b81dc2fcd3eecfcc4c3af154f39b84730e4a2d527cedf6d7f1e1d6c6ef" }, "downloads": -1, "filename": "cvxpy-1.0.28-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "043d782573fcb5ab420c1819d72a9d8c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 697740, "upload_time": "2020-02-24T23:51:36", "upload_time_iso_8601": "2020-02-24T23:51:36.556491Z", "url": "https://files.pythonhosted.org/packages/12/62/ae6b40464ecf64093172b2dbebe05c382c2c9169933bc6973bf3d35b4ac2/cvxpy-1.0.28-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93462a43b70b4e5f947d64b02574de8d", "sha256": "4a0ca16137768448c49880ec170d56795bacb9b76c52613cdcffa348ccd390f5" }, "downloads": -1, "filename": "cvxpy-1.0.28-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "93462a43b70b4e5f947d64b02574de8d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 745921, "upload_time": "2020-02-25T00:05:34", "upload_time_iso_8601": "2020-02-25T00:05:34.522788Z", "url": "https://files.pythonhosted.org/packages/68/fc/25e7b2c2e8242dd720b2f640b1c601b9db585fcd6e5e60cf20ddbace67dc/cvxpy-1.0.28-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63989f6b25cdea681f2bf36381d358f7", "sha256": "347d65df5a226d930577c4dae1a7345cea86773aa1d85343d5f1dbc08083e926" }, "downloads": -1, "filename": "cvxpy-1.0.28-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "63989f6b25cdea681f2bf36381d358f7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 695618, "upload_time": "2020-02-24T23:55:15", "upload_time_iso_8601": "2020-02-24T23:55:15.169247Z", "url": "https://files.pythonhosted.org/packages/cd/ea/5d715a5cf23111c4c8ed19b76da80c8b331cf6def76d28814ee1ca74800b/cvxpy-1.0.28-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29e1605ceeff8c6bf6ef5fce444fd4eb", "sha256": "ab1548afb1f56cdd4021950e9c3ff4756fd3a66960ab268471ee09b33da756d9" }, "downloads": -1, "filename": "cvxpy-1.0.28-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "29e1605ceeff8c6bf6ef5fce444fd4eb", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1418814, "upload_time": "2020-02-24T23:51:38", "upload_time_iso_8601": "2020-02-24T23:51:38.495710Z", "url": "https://files.pythonhosted.org/packages/ec/67/840585a2f3dd373332002cf8acf19a138fc80b09773f7e3f9843605d0a50/cvxpy-1.0.28-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4fd8e0c753946f3375f9c788bd3ee26", "sha256": "5c7be20cdcc927af7f722c7ee74c40e861deb26f492aa781ee43fe7209a12abf" }, "downloads": -1, "filename": "cvxpy-1.0.28-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "c4fd8e0c753946f3375f9c788bd3ee26", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 1416867, "upload_time": "2020-02-24T23:55:17", "upload_time_iso_8601": "2020-02-24T23:55:17.133498Z", "url": "https://files.pythonhosted.org/packages/9f/57/1d779f21d800db9ccf3d4bddb31703cf1b0999e979f30e79186bfa593977/cvxpy-1.0.28-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7bd4b9fe4fcb3d36150fe618c67b806d", "sha256": "212cd483e9a0fbc91d593aa599eb065615b058189f66c7881521b63e6493307a" }, "downloads": -1, "filename": "cvxpy-1.0.28.tar.gz", "has_sig": false, "md5_digest": "7bd4b9fe4fcb3d36150fe618c67b806d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 947442, "upload_time": "2020-02-24T23:57:14", "upload_time_iso_8601": "2020-02-24T23:57:14.231202Z", "url": "https://files.pythonhosted.org/packages/65/3e/186657ce34e74c3547151ad38050bc42885df5624c9fcbdd5aba5a00ebcf/cvxpy-1.0.28.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.29": [ { "comment_text": "", "digests": { "md5": "a4276f3f22baa2321d700d20c92fc39b", "sha256": "e56c1b401efb85b052039ec5a6628f0bcceb8302e264d4e32bd026fc2b371bb5" }, "downloads": -1, "filename": "cvxpy-1.0.29-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "a4276f3f22baa2321d700d20c92fc39b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 744978, "upload_time": "2020-04-01T18:48:11", "upload_time_iso_8601": "2020-04-01T18:48:11.664184Z", "url": "https://files.pythonhosted.org/packages/8f/9b/790237eb6d1e23e15ede4e2ca1017b9665cbd04c85263d2c985962e486b0/cvxpy-1.0.29-cp27-cp27m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e283ef18466c562b7aa6bec9369479a", "sha256": "1faedbbcd71f6874608a834d28c8b2581b0b1efdc802dff2f0bfcdfa0e28c5d3" }, "downloads": -1, "filename": "cvxpy-1.0.29-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5e283ef18466c562b7aa6bec9369479a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 745977, "upload_time": "2020-04-01T18:57:09", "upload_time_iso_8601": "2020-04-01T18:57:09.726363Z", "url": "https://files.pythonhosted.org/packages/62/ff/9cd0a4c70b08117ad6911a33c096e6928966eeeef183ec69ad38d1e6bad2/cvxpy-1.0.29-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f31b716a2fa0233d9bf50b5d5c11501", "sha256": "074f5e973703fdb2cb835ca59ec4d126cb74359f30899e337a30e61ee532c82d" }, "downloads": -1, "filename": "cvxpy-1.0.29-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1f31b716a2fa0233d9bf50b5d5c11501", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 745973, "upload_time": "2020-04-01T19:03:44", "upload_time_iso_8601": "2020-04-01T19:03:44.990436Z", "url": "https://files.pythonhosted.org/packages/94/ab/1617b48ea44d080c0b9e9e9f5aa039d537fa0632b7424f2e21574d582729/cvxpy-1.0.29-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "891deb5f475b78e86a2b1efa3fb8ab57", "sha256": "0cca1a09ec24b8bdfe80f3448b968eae7a8d72a45f938c0a284851c632a4d58d" }, "downloads": -1, "filename": "cvxpy-1.0.29.tar.gz", "has_sig": false, "md5_digest": "891deb5f475b78e86a2b1efa3fb8ab57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 947510, "upload_time": "2020-04-01T18:56:11", "upload_time_iso_8601": "2020-04-01T18:56:11.958306Z", "url": "https://files.pythonhosted.org/packages/de/fc/b421e6288a5c78acb577e072fa70e97ff970fc6c8c23c5142f4d7e2a278c/cvxpy-1.0.29.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "66c11700b6dbb82d7164a41084cfc195", "sha256": "53c5c8dcdab47368dee1304883ea81c17d05011a849e86487643fc953aff6657" }, "downloads": -1, "filename": "cvxpy-1.0.3.tar.gz", "has_sig": false, "md5_digest": "66c11700b6dbb82d7164a41084cfc195", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 880497, "upload_time": "2018-05-17T17:40:50", "upload_time_iso_8601": "2018-05-17T17:40:50.555767Z", "url": "https://files.pythonhosted.org/packages/a1/59/2613468ffbbe3a818934d06b81b9f4877fe054afbf4f99d2f43f398a0b34/cvxpy-1.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.31": [ { "comment_text": "", "digests": { "md5": "00188b32fecc383bce218f284b02fe8c", "sha256": "e88982b2817252803c45c3c6bd4f8919c0684c4b6595da953249253e612e3729" }, "downloads": -1, "filename": "cvxpy-1.0.31-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "00188b32fecc383bce218f284b02fe8c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 745085, "upload_time": "2020-04-09T17:17:31", "upload_time_iso_8601": "2020-04-09T17:17:31.352820Z", "url": "https://files.pythonhosted.org/packages/08/9c/fb2d3b0cd007dca7a3a9eff17cc4eaccc0a383a3a87e41d92a8f2126f510/cvxpy-1.0.31-cp27-cp27m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "377d68de3af75f75e0430f2f795db78a", "sha256": "513fe05931a0c93e25d4b4ccca84d7145a43b014d7a29a981d54c76a527bc0bf" }, "downloads": -1, "filename": "cvxpy-1.0.31-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "377d68de3af75f75e0430f2f795db78a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 746083, "upload_time": "2020-04-09T17:32:01", "upload_time_iso_8601": "2020-04-09T17:32:01.683495Z", "url": "https://files.pythonhosted.org/packages/cf/3f/a79c861e6a100e7abfdbbca76696a3d57d2b59e455613576e3d235389468/cvxpy-1.0.31-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17fbd677573fb94cbee505ecbfc75be7", "sha256": "4db9ec8593e8ef31cc8a22f5eb09e36460877724dcd9dc807b26e6768522e7a2" }, "downloads": -1, "filename": "cvxpy-1.0.31-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "17fbd677573fb94cbee505ecbfc75be7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 746080, "upload_time": "2020-04-09T17:35:20", "upload_time_iso_8601": "2020-04-09T17:35:20.112551Z", "url": "https://files.pythonhosted.org/packages/d2/a2/31b8c02a1b722f3713a0ea24ef8484c7f51edb0a73d44a0504140d0a624a/cvxpy-1.0.31-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba41007b1b0e6c88b644c970576fbb2f", "sha256": "b398754f9e9ceaa46b07806b5ae85f90fd8de748475db22a6b99c5943cebe69d" }, "downloads": -1, "filename": "cvxpy-1.0.31.tar.gz", "has_sig": false, "md5_digest": "ba41007b1b0e6c88b644c970576fbb2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 947531, "upload_time": "2020-04-09T17:30:59", "upload_time_iso_8601": "2020-04-09T17:30:59.019340Z", "url": "https://files.pythonhosted.org/packages/11/d0/d900870dc2d02ea74961b90c353666c6528a33ea61a10aa59a0d5574ae59/cvxpy-1.0.31.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "533c5b13184ee87db4ea66bc215715e5", "sha256": "8875e4034781b67769864d65399002064c9ab3a48b5c243c21ef8276ed21c9c1" }, "downloads": -1, "filename": "cvxpy-1.0.4.tar.gz", "has_sig": false, "md5_digest": "533c5b13184ee87db4ea66bc215715e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 892518, "upload_time": "2018-06-08T23:10:38", "upload_time_iso_8601": "2018-06-08T23:10:38.568599Z", "url": "https://files.pythonhosted.org/packages/5e/24/18cdad786477c5d23e1525173fe87e53c6a64bbdbaa70aa2f016cb71522f/cvxpy-1.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "ec1ab16e2cba27a1d19f169f01baa5dc", "sha256": "5e51e921ac7d784ac4848d237ba361c2b673195ac6913b82f0b5daf3ec9e1de6" }, "downloads": -1, "filename": "cvxpy-1.0.5.tar.gz", "has_sig": false, "md5_digest": "ec1ab16e2cba27a1d19f169f01baa5dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 892957, "upload_time": "2018-06-09T06:53:11", "upload_time_iso_8601": "2018-06-09T06:53:11.731858Z", "url": "https://files.pythonhosted.org/packages/58/f1/2931c8f5093c698dce7a0040f07d5e4ea5270297fb304fd3f2da64a6a717/cvxpy-1.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "84382a0453bb62217369491abb110e1a", "sha256": "a1b5b3ac31f6ed02649196c34e9b2d23320f170a7b05d6796029d9e7d4fc78d1" }, "downloads": -1, "filename": "cvxpy-1.0.6.tar.gz", "has_sig": false, "md5_digest": "84382a0453bb62217369491abb110e1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 893020, "upload_time": "2018-06-11T20:04:09", "upload_time_iso_8601": "2018-06-11T20:04:09.763434Z", "url": "https://files.pythonhosted.org/packages/c2/d4/123077905277c2222b104be90012b633911cce7b7b9f38976763c3998c9f/cvxpy-1.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "62006f2d40f5979ecaf895245da81633", "sha256": "8a4392b60ad7eb23fadd064620015713a2693dcf2799e4098e101f890052c34e" }, "downloads": -1, "filename": "cvxpy-1.0.8.tar.gz", "has_sig": false, "md5_digest": "62006f2d40f5979ecaf895245da81633", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 900886, "upload_time": "2018-08-22T02:30:07", "upload_time_iso_8601": "2018-08-22T02:30:07.285511Z", "url": "https://files.pythonhosted.org/packages/79/06/cc0553f250eef7160a364b561b451b40954308d1520e6bb055b8c6ac144a/cvxpy-1.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "007ed4087d381ebe77869f78d957c39b", "sha256": "39d95de9cbd0b7eb814e039eb0ba4a0e56637828928b7e20d4e25e1d7bdd83b1" }, "downloads": -1, "filename": "cvxpy-1.0.9.tar.gz", "has_sig": false, "md5_digest": "007ed4087d381ebe77869f78d957c39b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 899236, "upload_time": "2018-10-04T15:38:27", "upload_time_iso_8601": "2018-10-04T15:38:27.630958Z", "url": "https://files.pythonhosted.org/packages/2d/3b/e9cf628bcb129731aefd9237e49ac455d14e3724c5d01f8d4df6acae75d0/cvxpy-1.0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "d1868a7a2a2b248ee357772604bb5f17", "sha256": "2456c77adc588e2d7fca434d976c61548a0b56a4bd6c28e0228b4106ce37099b" }, "downloads": -1, "filename": "cvxpy-1.1.0-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "d1868a7a2a2b248ee357772604bb5f17", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 811653, "upload_time": "2020-06-02T18:21:03", "upload_time_iso_8601": "2020-06-02T18:21:03.824302Z", "url": "https://files.pythonhosted.org/packages/5b/52/11f1ce6fd4e4c21a45fa0fb27393292a5f4190f1b040c78b464b3b778783/cvxpy-1.1.0-cp35-cp35m-macosx_10_6_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "862fa75abab49771aedd6bc3935a39fd", "sha256": "9c89f1c9c1f20f577dc2d102629613bce7605f686e06476b0d7cb4c9c6d99f98" }, "downloads": -1, "filename": "cvxpy-1.1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "862fa75abab49771aedd6bc3935a39fd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 763058, "upload_time": "2020-06-02T18:53:07", "upload_time_iso_8601": "2020-06-02T18:53:07.638957Z", "url": "https://files.pythonhosted.org/packages/78/bf/8675daf50624b57b068bb63896dfad6b616e0e01f17fa7675110a5a90a9e/cvxpy-1.1.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efea987f1c584c8f802e2250995ab2ae", "sha256": "f5af8fbb0189cb320b9ba1cca2d610baf8bddf46eb80d439d743841f53787f5c" }, "downloads": -1, "filename": "cvxpy-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "efea987f1c584c8f802e2250995ab2ae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 815761, "upload_time": "2020-06-02T18:19:58", "upload_time_iso_8601": "2020-06-02T18:19:58.813715Z", "url": "https://files.pythonhosted.org/packages/f2/93/e2554fd4aa8eab6381e638c04524949cf5049038d18c21597c93301a6363/cvxpy-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08904db5bb5020022b4d194b4bf386c8", "sha256": "1ba15b915cec99ecab94a8d34d116603e04081406ac9b7ee10d6bf276f75b77a" }, "downloads": -1, "filename": "cvxpy-1.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "08904db5bb5020022b4d194b4bf386c8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 763066, "upload_time": "2020-06-02T19:06:44", "upload_time_iso_8601": "2020-06-02T19:06:44.340037Z", "url": "https://files.pythonhosted.org/packages/89/e0/45e6f84d63a7fce33826cf9507f39cb0e168e74730b0842cf7c9be064d0d/cvxpy-1.1.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2721ff0db971f7c64e9b4112a5f2401", "sha256": "596eb4eefc16b822e867bdc42878f81c987661c9a319149bebc821c06966fd71" }, "downloads": -1, "filename": "cvxpy-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c2721ff0db971f7c64e9b4112a5f2401", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 815765, "upload_time": "2020-06-02T18:35:57", "upload_time_iso_8601": "2020-06-02T18:35:57.401450Z", "url": "https://files.pythonhosted.org/packages/17/19/98c0ae068716db61199f64d5bd707b80615ac50bf66e86503a2768798f41/cvxpy-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06272f3e49645c1ffce5ad7c6ccd5f8b", "sha256": "9e85dd11c8928ee99f16862d59c51b3b6e6642ae83db41b7e66032bdbb985a32" }, "downloads": -1, "filename": "cvxpy-1.1.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "06272f3e49645c1ffce5ad7c6ccd5f8b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 763067, "upload_time": "2020-06-02T19:20:55", "upload_time_iso_8601": "2020-06-02T19:20:55.445984Z", "url": "https://files.pythonhosted.org/packages/a8/c2/3d5869e2c643e2afc8b425604ca4800b93767dcb36fba6f30cbf37962cd1/cvxpy-1.1.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de35463f0416ad5433cf2a27b6a42224", "sha256": "fec4e6e18540de54d0e8b88a9df6ee9ddc5ec235ea75f738522c97e848556be8" }, "downloads": -1, "filename": "cvxpy-1.1.0-py3.5-win-amd64.egg", "has_sig": false, "md5_digest": "de35463f0416ad5433cf2a27b6a42224", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": ">=3.5", "size": 1565885, "upload_time": "2020-06-02T18:53:08", "upload_time_iso_8601": "2020-06-02T18:53:08.674878Z", "url": "https://files.pythonhosted.org/packages/40/4c/ca3df8b4fc2308487d772cdbf70ee6d7a09fd6f1150b2fbf433f49bc034d/cvxpy-1.1.0-py3.5-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0dc3facb4d0dd08d84e82a3cc5e6b0f", "sha256": "3b9e2fb0b93eb84c1d91d247adbff07b41691d5ecc474ce03bad8f6dc321f0a1" }, "downloads": -1, "filename": "cvxpy-1.1.0-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "e0dc3facb4d0dd08d84e82a3cc5e6b0f", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1545592, "upload_time": "2020-06-02T19:06:45", "upload_time_iso_8601": "2020-06-02T19:06:45.497829Z", "url": "https://files.pythonhosted.org/packages/fa/df/0cb4ee2f3817dfa0db3758ec1411fcafba60c2712ea12119844a0d0643df/cvxpy-1.1.0-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95f0702fa7887fb244b215620ff32f8d", "sha256": "bfca104779340f3a97f736a1d61f23e793889bf5e0d89cdad6cb8be959e8f240" }, "downloads": -1, "filename": "cvxpy-1.1.0-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "95f0702fa7887fb244b215620ff32f8d", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1545847, "upload_time": "2020-06-02T19:20:56", "upload_time_iso_8601": "2020-06-02T19:20:56.756278Z", "url": "https://files.pythonhosted.org/packages/65/aa/85574f5ee2d55c797eecbafb484730d640d6664a96ef779cb2a543301e8f/cvxpy-1.1.0-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59997aaa1289cd5af84c1d4c0e7f65c4", "sha256": "1ad1c3b253cf58df79a8d8406f508c8a9da582b8f3873397c93d3b15954245d1" }, "downloads": -1, "filename": "cvxpy-1.1.0.tar.gz", "has_sig": false, "md5_digest": "59997aaa1289cd5af84c1d4c0e7f65c4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 990627, "upload_time": "2020-06-02T18:19:21", "upload_time_iso_8601": "2020-06-02T18:19:21.219363Z", "url": "https://files.pythonhosted.org/packages/2f/33/b9fec8fcfa0e07348a9e83af801d16c2139942aac4ed7a37d24ed3eccf41/cvxpy-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0a0": [ { "comment_text": "", "digests": { "md5": "f19efe51478f0ba0d310a48c0c256514", "sha256": "04a52cb0c8f4c6ddd0eff2012a2b324cbf5788a15f7ffe1f225b22df8ea358dc" }, "downloads": -1, "filename": "cvxpy-1.1.0a0-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "f19efe51478f0ba0d310a48c0c256514", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 782366, "upload_time": "2019-10-18T23:36:50", "upload_time_iso_8601": "2019-10-18T23:36:50.605286Z", "url": "https://files.pythonhosted.org/packages/83/d7/563cb0dada523c00fb1301f4463a007702ce03f20702a60b7a2e82c81d18/cvxpy-1.1.0a0-cp36-cp36m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ab03f4cc78bf0dafbcbe43ce491a00c", "sha256": "6ca3e9dc813e65a235e65a12d63a6a5e3f3562fd7948f692c5390cc1f7be98df" }, "downloads": -1, "filename": "cvxpy-1.1.0a0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "7ab03f4cc78bf0dafbcbe43ce491a00c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 730096, "upload_time": "2019-10-19T17:48:34", "upload_time_iso_8601": "2019-10-19T17:48:34.146802Z", "url": "https://files.pythonhosted.org/packages/0e/bd/50893e5eeb9312c6c297afbb29282357bc14b32ee8b8f7514d1c27e9d1f3/cvxpy-1.1.0a0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86635b8b0ee89d49a6a64b62116c4480", "sha256": "2f06c65a7f491bc96cd356a120aeea36302695a8488f859f13b58c9fc5b76f26" }, "downloads": -1, "filename": "cvxpy-1.1.0a0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "86635b8b0ee89d49a6a64b62116c4480", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 782369, "upload_time": "2019-10-19T00:21:19", "upload_time_iso_8601": "2019-10-19T00:21:19.108774Z", "url": "https://files.pythonhosted.org/packages/95/dd/0403dd02c199b4781ed8af6899b27ef1406cc2abc78c8bb9a41588b775de/cvxpy-1.1.0a0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2cf6df4cf35beaf264f9e3709e06256", "sha256": "4c1049742bac5e8bed7ea0a8236641683c80d7cf659e920865e157850f042be5" }, "downloads": -1, "filename": "cvxpy-1.1.0a0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "e2cf6df4cf35beaf264f9e3709e06256", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 730095, "upload_time": "2019-10-19T17:55:41", "upload_time_iso_8601": "2019-10-19T17:55:41.236044Z", "url": "https://files.pythonhosted.org/packages/ff/81/b80a6db2bb8480ea54fe2ddb6a82b809348e15754e1fc88296d2adb59b31/cvxpy-1.1.0a0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9921a18686a5b6d51fa6cd84321ef10b", "sha256": "e08ea490c75dbb76aa99a7b8417e9c1288c5285ecf5c3210a38667e7602a8a92" }, "downloads": -1, "filename": "cvxpy-1.1.0a0-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "9921a18686a5b6d51fa6cd84321ef10b", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1462679, "upload_time": "2019-10-19T17:48:36", "upload_time_iso_8601": "2019-10-19T17:48:36.163538Z", "url": "https://files.pythonhosted.org/packages/89/a6/50efcd74eca80145254de5bce847c3a79b39a8346397ad8dadad7b778bcb/cvxpy-1.1.0a0-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58fe7579b13a91c5e3a2a36dce63e4ca", "sha256": "a402de36b05c2a520f79ab358b6e73e486efe9d636a80774a1e571ba7e7a5c92" }, "downloads": -1, "filename": "cvxpy-1.1.0a0-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "58fe7579b13a91c5e3a2a36dce63e4ca", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 1463012, "upload_time": "2019-10-19T17:55:43", "upload_time_iso_8601": "2019-10-19T17:55:43.153541Z", "url": "https://files.pythonhosted.org/packages/88/13/303ea3b628f7ce0510ae61526f9ef337331d2ff19340a9ba23bfca49673e/cvxpy-1.1.0a0-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2552e29a7084fd96b7734dc2d8bf2f70", "sha256": "24f1f73fcb0f397df08cafd4f24037c0fc13e23ea5df8b132eecfe4bb6b44023" }, "downloads": -1, "filename": "cvxpy-1.1.0a0.tar.gz", "has_sig": false, "md5_digest": "2552e29a7084fd96b7734dc2d8bf2f70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 960778, "upload_time": "2019-10-18T23:36:13", "upload_time_iso_8601": "2019-10-18T23:36:13.635729Z", "url": "https://files.pythonhosted.org/packages/48/0b/d4f32a1d805e9acc87e3fa5f5d1c6360d87a300741431418a4d7de8518ee/cvxpy-1.1.0a0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0a1": [ { "comment_text": "", "digests": { "md5": "9cfefa526fe9951dffb3d666a4291819", "sha256": "b42391ff990f865638c1be24bd35826b1394df3e0a504f2e56136a2fe219928a" }, "downloads": -1, "filename": "cvxpy-1.1.0a1-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "9cfefa526fe9951dffb3d666a4291819", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 789302, "upload_time": "2019-10-30T04:50:46", "upload_time_iso_8601": "2019-10-30T04:50:46.929153Z", "url": "https://files.pythonhosted.org/packages/80/d6/e270350e5dada9924cd011e534d37b2c7d29fba84afa88b71d6a361e48b9/cvxpy-1.1.0a1-cp36-cp36m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae032be73de01c9b2ec4846224d6fb5b", "sha256": "fbd54888d0ce959c7e7aeea3aca0ca5f940b914b190482318b1d39749fd3e89c" }, "downloads": -1, "filename": "cvxpy-1.1.0a1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ae032be73de01c9b2ec4846224d6fb5b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 737028, "upload_time": "2019-10-30T05:07:25", "upload_time_iso_8601": "2019-10-30T05:07:25.948970Z", "url": "https://files.pythonhosted.org/packages/72/92/a4e75ee930337c1f686a0fb5836cb7b94296caa740c2f7942753f5f1e351/cvxpy-1.1.0a1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3e47511b9f1365454b56d0f3e375146", "sha256": "b2e7ea91424f686846ec6592ec59d5f74e6ccd298b92e544ddde4a979324a537" }, "downloads": -1, "filename": "cvxpy-1.1.0a1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a3e47511b9f1365454b56d0f3e375146", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 789304, "upload_time": "2019-10-30T04:53:40", "upload_time_iso_8601": "2019-10-30T04:53:40.530700Z", "url": "https://files.pythonhosted.org/packages/b9/0c/af2dd4af2e23157833be646aff97d421992e62f52d4055f042d05d5dc0e3/cvxpy-1.1.0a1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe1cdfa5bc2f204abf5c6df5e4fe2832", "sha256": "4f5735908186dfc8dfc82de380f8d84db4d7ce3dcccd4a66e69c1eb9156b28ad" }, "downloads": -1, "filename": "cvxpy-1.1.0a1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "fe1cdfa5bc2f204abf5c6df5e4fe2832", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 737026, "upload_time": "2019-10-30T05:15:37", "upload_time_iso_8601": "2019-10-30T05:15:37.054952Z", "url": "https://files.pythonhosted.org/packages/50/c9/27ea25474a93fc19e6d8f3dcc2f598fe1a4f5a253ae280b25fc1d1ad98c6/cvxpy-1.1.0a1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74043420fb0fc3e7ebc1cdf9dc1d52fd", "sha256": "41d0fbf8622c9f00b921f63c8208301f9f7007157762e5f2499212d3edcc8bb2" }, "downloads": -1, "filename": "cvxpy-1.1.0a1-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "74043420fb0fc3e7ebc1cdf9dc1d52fd", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1479864, "upload_time": "2019-10-30T05:07:27", "upload_time_iso_8601": "2019-10-30T05:07:27.953202Z", "url": "https://files.pythonhosted.org/packages/b6/89/8fbbcb8bf4092c20349b3d17eb1d227724fa87e3e981f08b5ce54ff85418/cvxpy-1.1.0a1-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb3a38e436a1d61269c1c8fe4f1d3df6", "sha256": "f3b113f77357a8625c231bea4238805f750da75676e749998c1590f8daa3154b" }, "downloads": -1, "filename": "cvxpy-1.1.0a1-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "fb3a38e436a1d61269c1c8fe4f1d3df6", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 1480286, "upload_time": "2019-10-30T05:15:38", "upload_time_iso_8601": "2019-10-30T05:15:38.656464Z", "url": "https://files.pythonhosted.org/packages/2f/6c/528b5d827ea5490ed00313a16c985d95fd1b2038199d9855cf1f3b70febe/cvxpy-1.1.0a1-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a44d26d8be86bfa4d7b7b4d0ad25bb40", "sha256": "688e72e355b8d116d5e3dedf58af55269cb76fba6b621d0b42cb397f7b93d0a2" }, "downloads": -1, "filename": "cvxpy-1.1.0a1.tar.gz", "has_sig": false, "md5_digest": "a44d26d8be86bfa4d7b7b4d0ad25bb40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 967362, "upload_time": "2019-10-30T04:50:09", "upload_time_iso_8601": "2019-10-30T04:50:09.533921Z", "url": "https://files.pythonhosted.org/packages/40/a0/486d8573249313a010a04c41f7289a6981d2c102638a2bcb7f18cd702050/cvxpy-1.1.0a1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0a2": [ { "comment_text": "", "digests": { "md5": "455ca180d0e4d4edb95cf5cbe790ba52", "sha256": "5fe1015f0349c3dbdb7df8f782f1217832ac2771e3126a8fea7b8328dfddb9f1" }, "downloads": -1, "filename": "cvxpy-1.1.0a2-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "455ca180d0e4d4edb95cf5cbe790ba52", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 795704, "upload_time": "2020-01-06T19:35:00", "upload_time_iso_8601": "2020-01-06T19:35:00.032704Z", "url": "https://files.pythonhosted.org/packages/a3/b7/441416e59ff944436f3365946c210bb49288b70f06c982186dd4d09e5ed0/cvxpy-1.1.0a2-cp36-cp36m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3945e60bd47bdea31ca6f77ca36e7ded", "sha256": "4345ed6eb27926ae67cccfeba1fdea1be54654f55a0a10322eed282d79032429" }, "downloads": -1, "filename": "cvxpy-1.1.0a2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "3945e60bd47bdea31ca6f77ca36e7ded", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 743430, "upload_time": "2020-01-06T19:29:43", "upload_time_iso_8601": "2020-01-06T19:29:43.330961Z", "url": "https://files.pythonhosted.org/packages/46/5c/6a299adb6e4d0f6ec8ef1757d91c988e29f9a37019dcf2f2839754e3d680/cvxpy-1.1.0a2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "510ce033ffa11bdb47364c2271a08bc2", "sha256": "35c851f4e6c426a06e329962e1e832bce60e9b458b53a8eef938532c52eb62eb" }, "downloads": -1, "filename": "cvxpy-1.1.0a2-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "510ce033ffa11bdb47364c2271a08bc2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 795703, "upload_time": "2020-01-06T19:54:02", "upload_time_iso_8601": "2020-01-06T19:54:02.446779Z", "url": "https://files.pythonhosted.org/packages/1e/bb/a7b66716f1a2cb4a25ee43b0ac906520e3053ab4ca3af90bbdd8749b4894/cvxpy-1.1.0a2-cp37-cp37m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82fb278c974280a08f809130edd47490", "sha256": "e71c69283b2f4f4449ce232f207558ab47395fb7e205cda88965c8b612852381" }, "downloads": -1, "filename": "cvxpy-1.1.0a2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "82fb278c974280a08f809130edd47490", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 743429, "upload_time": "2020-01-06T19:38:25", "upload_time_iso_8601": "2020-01-06T19:38:25.254114Z", "url": "https://files.pythonhosted.org/packages/16/9a/a0bb5762c8356889ef8dd3d669b8380585a67849efe9a71ddac32a3ed4b0/cvxpy-1.1.0a2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea7e8935ba018f49eadae81ffc5eb9d9", "sha256": "068e0cf720fcb707bc67e9c70f549523700994d8c30fb9f43ae155f55ddc9370" }, "downloads": -1, "filename": "cvxpy-1.1.0a2-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "ea7e8935ba018f49eadae81ffc5eb9d9", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1498137, "upload_time": "2020-01-06T19:29:45", "upload_time_iso_8601": "2020-01-06T19:29:45.768826Z", "url": "https://files.pythonhosted.org/packages/c4/62/131a4c37e55fbe0d4fbd6e869098a9ab84bc22094610ea0115e2bc03e1bc/cvxpy-1.1.0a2-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ab5570e9e8bdc6d94495f488d3dd088", "sha256": "6d328ae7d2a5061547c5354390bb1cdbce506129abed86161416ef8e2066ff3f" }, "downloads": -1, "filename": "cvxpy-1.1.0a2-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "4ab5570e9e8bdc6d94495f488d3dd088", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 1499181, "upload_time": "2020-01-06T19:38:27", "upload_time_iso_8601": "2020-01-06T19:38:27.281735Z", "url": "https://files.pythonhosted.org/packages/30/42/a691b5d140909a2e65e53feefe2ad9a156594cf51e99f90451d55069b723/cvxpy-1.1.0a2-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a7fffdcfe475768696e7bff230f201c", "sha256": "d48983b267e38043601b568f33ebebe5411ff6b97f2da0a4ca70b8f8800727b0" }, "downloads": -1, "filename": "cvxpy-1.1.0a2.tar.gz", "has_sig": false, "md5_digest": "4a7fffdcfe475768696e7bff230f201c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 974059, "upload_time": "2020-01-06T19:34:17", "upload_time_iso_8601": "2020-01-06T19:34:17.136265Z", "url": "https://files.pythonhosted.org/packages/1b/6b/e8a6e2e0b6ceeeb0533ab3e7b0af5e00424ff281f0c07fea466640267c2b/cvxpy-1.1.0a2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0a3": [ { "comment_text": "", "digests": { "md5": "0119ab7a17329b3888273b6d39dca438", "sha256": "0e1a6818a6afe19aa5e536b75793360e5666ac506089a0c4b8d5f2176c257304" }, "downloads": -1, "filename": "cvxpy-1.1.0a3-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "0119ab7a17329b3888273b6d39dca438", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 789458, "upload_time": "2020-02-08T21:17:00", "upload_time_iso_8601": "2020-02-08T21:17:00.345434Z", "url": "https://files.pythonhosted.org/packages/b1/79/6b39e4f26312383089a3e6576a5a6c3476b268dc626dd1ba9db7ae90502c/cvxpy-1.1.0a3-cp35-cp35m-macosx_10_6_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "326daa36284f08f29b9898c0200160c4", "sha256": "c4d0478b54b1bc5d0bf5153647e8b7a8be946dd3fe7c61a6fd46e4d991cd749a" }, "downloads": -1, "filename": "cvxpy-1.1.0a3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "326daa36284f08f29b9898c0200160c4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 741308, "upload_time": "2020-02-08T21:20:07", "upload_time_iso_8601": "2020-02-08T21:20:07.317390Z", "url": "https://files.pythonhosted.org/packages/bb/80/dfcf99cd86eac04a252a5f4a47e4845017ef10e1f53c5942d4c239b711c1/cvxpy-1.1.0a3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d526bef1315755cb183400dd92fef9df", "sha256": "5e3f25d1db4805fa9ea4f8b98863e9a1d134ad972951f3e6ab46e7771a4687cc" }, "downloads": -1, "filename": "cvxpy-1.1.0a3-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d526bef1315755cb183400dd92fef9df", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 793572, "upload_time": "2020-02-07T20:53:33", "upload_time_iso_8601": "2020-02-07T20:53:33.069235Z", "url": "https://files.pythonhosted.org/packages/6e/39/0d6f06a3a52bad0c4ea69044b7365cef305b3ea1aab29e4dd8d81fe4d5b2/cvxpy-1.1.0a3-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2627a71cd794a9d84e14d4e1ffde3a67", "sha256": "7b49cf71f6156eb7a8d8f79268cdf63f48a4ac9ba47e243b83e2c19e6f411a50" }, "downloads": -1, "filename": "cvxpy-1.1.0a3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "2627a71cd794a9d84e14d4e1ffde3a67", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 741299, "upload_time": "2020-02-07T21:01:39", "upload_time_iso_8601": "2020-02-07T21:01:39.992338Z", "url": "https://files.pythonhosted.org/packages/0b/61/ee3cb61d578f330316169f785a5edcff5f06648da10f1f3824f0c0a76180/cvxpy-1.1.0a3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21f02a77484032f03c2993f50413d8cd", "sha256": "65bacb9ebb1fc03eb45b6ff1868f2f46fd730cccb1457ca2b1184049db9beea2" }, "downloads": -1, "filename": "cvxpy-1.1.0a3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "21f02a77484032f03c2993f50413d8cd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 793572, "upload_time": "2020-02-07T21:01:52", "upload_time_iso_8601": "2020-02-07T21:01:52.131743Z", "url": "https://files.pythonhosted.org/packages/ac/8e/e851a7ba3357b228fc7a210df9065c51de580cc60ada51a733dc2d764796/cvxpy-1.1.0a3-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a87697be427de69438f61524b8d7bafc", "sha256": "873a4e86afb6f82537c6d03680762228ef856f1d0c44e7ebcddac16021b1e6a1" }, "downloads": -1, "filename": "cvxpy-1.1.0a3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a87697be427de69438f61524b8d7bafc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 741299, "upload_time": "2020-02-07T21:06:20", "upload_time_iso_8601": "2020-02-07T21:06:20.233164Z", "url": "https://files.pythonhosted.org/packages/ec/75/1b3eada5b4c35f79572fb3756e94527bfc88ab8bf3716cdde2dd3cc410e3/cvxpy-1.1.0a3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7aade0df8f5a08bf24958bb1f70e980c", "sha256": "76be4f8bd9431c837c01fca5a9f4c05ecd0181a29197891ac2c2341a114ae6f2" }, "downloads": -1, "filename": "cvxpy-1.1.0a3-py3.5-win-amd64.egg", "has_sig": false, "md5_digest": "7aade0df8f5a08bf24958bb1f70e980c", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": ">=3.5", "size": 1511888, "upload_time": "2020-02-08T21:20:09", "upload_time_iso_8601": "2020-02-08T21:20:09.349117Z", "url": "https://files.pythonhosted.org/packages/94/ef/08cc958451c32fcad6312da213904d95f3bd5b4e5706a3b635756b15b555/cvxpy-1.1.0a3-py3.5-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5351adde1e8ea4d9b219ccf0629278eb", "sha256": "f68dfd6a7b6b418ae911d05bb069cbf8693dbc6a8f678db4251ae7f01de6b850" }, "downloads": -1, "filename": "cvxpy-1.1.0a3-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "5351adde1e8ea4d9b219ccf0629278eb", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1493593, "upload_time": "2020-02-07T21:01:41", "upload_time_iso_8601": "2020-02-07T21:01:41.563348Z", "url": "https://files.pythonhosted.org/packages/81/d9/d8f855117182d0ddd8ce966e4fe01f71589892fbf20fec9ff183c328ed49/cvxpy-1.1.0a3-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e028969cecd4782db9e381950c9f269d", "sha256": "5ad82c14a368495f4abde78a196e02e50192c89fab160d3e24aa24b21420744d" }, "downloads": -1, "filename": "cvxpy-1.1.0a3-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "e028969cecd4782db9e381950c9f269d", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1493440, "upload_time": "2020-02-07T21:06:22", "upload_time_iso_8601": "2020-02-07T21:06:22.775742Z", "url": "https://files.pythonhosted.org/packages/a7/d9/c40998afdd5f58581bd51a992a34c4347cd3f4c4549af45d6ba497cf63c2/cvxpy-1.1.0a3-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2349d7671972ab9e5bcc3f69b9220f45", "sha256": "5b02c2b8cc1cfa369357c6f9914c64da923e976fd68718c63a0866e82f9d8624" }, "downloads": -1, "filename": "cvxpy-1.1.0a3.tar.gz", "has_sig": false, "md5_digest": "2349d7671972ab9e5bcc3f69b9220f45", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 972663, "upload_time": "2020-02-07T20:52:56", "upload_time_iso_8601": "2020-02-07T20:52:56.919089Z", "url": "https://files.pythonhosted.org/packages/7c/1d/e44f8e653d5f170c93185b1cee6f6bdb7a94f961966914ef0cc999fb225a/cvxpy-1.1.0a3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0a4": [ { "comment_text": "", "digests": { "md5": "a4cbfa19c63f0f31d7b4cd0ace0b838e", "sha256": "fa48955692550fbc3fe018e565687e016d34996c2df61c7b939987761bb2b5f1" }, "downloads": -1, "filename": "cvxpy-1.1.0a4-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "a4cbfa19c63f0f31d7b4cd0ace0b838e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 809954, "upload_time": "2020-04-26T18:39:27", "upload_time_iso_8601": "2020-04-26T18:39:27.747745Z", "url": "https://files.pythonhosted.org/packages/28/45/53bdfbc35bccd92753bc7a0a513331f9a1cee1ca431ddb33609f9fe4c2cb/cvxpy-1.1.0a4-cp35-cp35m-macosx_10_6_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2746f0e3cfcda7ba566b3aac3aef775b", "sha256": "2f0c768d32ad7055319f2705113ea992b0269408d529264dbbbcf8306b233078" }, "downloads": -1, "filename": "cvxpy-1.1.0a4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "2746f0e3cfcda7ba566b3aac3aef775b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 761801, "upload_time": "2020-04-26T18:42:17", "upload_time_iso_8601": "2020-04-26T18:42:17.435487Z", "url": "https://files.pythonhosted.org/packages/2f/b9/1a5bd520d9350f45e5da82841794aed93b28c38e03fd5f225a1c805caf60/cvxpy-1.1.0a4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bca40d6ba3cbed8378cfe6c2a33cfa13", "sha256": "a6c2aa4db1bb864c90cbce1e67cae81b674298bbbe5227edfd1f75a522a79885" }, "downloads": -1, "filename": "cvxpy-1.1.0a4-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bca40d6ba3cbed8378cfe6c2a33cfa13", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 814069, "upload_time": "2020-04-26T18:38:37", "upload_time_iso_8601": "2020-04-26T18:38:37.486029Z", "url": "https://files.pythonhosted.org/packages/26/4a/f2cfb6ec62c6d7976d92ebdec16ae0f06a4b8e43fdecc372e547c3c5be9e/cvxpy-1.1.0a4-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eed7cb236cc9ed6fb7c29366bd1ef96a", "sha256": "ac503d0d4153b5a825d92e5197c45b6e5e1c13893df277d01797a7e5fddc9644" }, "downloads": -1, "filename": "cvxpy-1.1.0a4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "eed7cb236cc9ed6fb7c29366bd1ef96a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 761796, "upload_time": "2020-04-26T18:51:26", "upload_time_iso_8601": "2020-04-26T18:51:26.119903Z", "url": "https://files.pythonhosted.org/packages/89/ee/0e5d7af80382fca6852f4c6526abc5c6ef6430b4b2cfcb0ed4bfaf6e442e/cvxpy-1.1.0a4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "864c1d9443def600b0269225b7f004c2", "sha256": "825adea7cd83b887a13f1a5f6cdd7022de6c5010a977922a3ac5cb140ded0a8a" }, "downloads": -1, "filename": "cvxpy-1.1.0a4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "864c1d9443def600b0269225b7f004c2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 814071, "upload_time": "2020-04-26T18:53:16", "upload_time_iso_8601": "2020-04-26T18:53:16.575479Z", "url": "https://files.pythonhosted.org/packages/5c/38/1be4f576fb9c65abb91c6e416a277af25f7bb045b0e1fc252ad8dc8a109f/cvxpy-1.1.0a4-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb8d400861f245946e55aff27df705f0", "sha256": "a33bc64e7eac657a0b97783b84532debdb2817ab2138fd374ee9aa68413fcd59" }, "downloads": -1, "filename": "cvxpy-1.1.0a4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "bb8d400861f245946e55aff27df705f0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 761796, "upload_time": "2020-04-26T19:01:11", "upload_time_iso_8601": "2020-04-26T19:01:11.051106Z", "url": "https://files.pythonhosted.org/packages/65/8c/d749712ef55458221917b9630c4a32550c473c20520d6595d14624884989/cvxpy-1.1.0a4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f575a0dd6a56a416038b7b533f06d79", "sha256": "5ee63d0ef383d9265034d8832065e10f91e76dcafa666da0b54a1fa1e5ea99e0" }, "downloads": -1, "filename": "cvxpy-1.1.0a4-py3.5-win-amd64.egg", "has_sig": false, "md5_digest": "4f575a0dd6a56a416038b7b533f06d79", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": ">=3.5", "size": 1562276, "upload_time": "2020-04-26T18:42:18", "upload_time_iso_8601": "2020-04-26T18:42:18.885303Z", "url": "https://files.pythonhosted.org/packages/f9/73/526b5571ca020adc256fc764219339aa712bd6aa806a90d791f27e352dd5/cvxpy-1.1.0a4-py3.5-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d796b5ca8eb918767e05f4d26a1b186", "sha256": "f8d2b3c282d45820390b95998d6d209a8a2575099431e403c3741c872363ec49" }, "downloads": -1, "filename": "cvxpy-1.1.0a4-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "2d796b5ca8eb918767e05f4d26a1b186", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1542370, "upload_time": "2020-04-26T18:51:27", "upload_time_iso_8601": "2020-04-26T18:51:27.053639Z", "url": "https://files.pythonhosted.org/packages/1d/8a/435ee6076fd85dbf13997d45049794652fa578e244c9aa6c289ead4dff55/cvxpy-1.1.0a4-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c197b0fe79e37660024d615be602ef6", "sha256": "f7d80d9424af477e9f5d4c09d1fc97fd9712bd63cb01476662a0a705f2448474" }, "downloads": -1, "filename": "cvxpy-1.1.0a4-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "8c197b0fe79e37660024d615be602ef6", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1542556, "upload_time": "2020-04-26T19:01:12", "upload_time_iso_8601": "2020-04-26T19:01:12.144796Z", "url": "https://files.pythonhosted.org/packages/f5/e6/fb787cf15ce331b8439f9cf470931ce207f2346b0dd1e40bd55d5c913533/cvxpy-1.1.0a4-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c37588b063c33ffc6d5bfa6bb229cd33", "sha256": "f6f78e2f0e4bc755f160abbec086e6ca0002fdd3c54f98a765e7adb2347a5f8a" }, "downloads": -1, "filename": "cvxpy-1.1.0a4.tar.gz", "has_sig": false, "md5_digest": "c37588b063c33ffc6d5bfa6bb229cd33", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 989031, "upload_time": "2020-04-26T18:38:03", "upload_time_iso_8601": "2020-04-26T18:38:03.678784Z", "url": "https://files.pythonhosted.org/packages/50/46/198783251df70b0557ed8cafddd0b523d92f56287e87539f4ef012eca36e/cvxpy-1.1.0a4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "e680714d98c5760994b6f89ee4fc2b54", "sha256": "ac05cd7a261db73e16b82e40e6949c8fe67902a967ca5dcb7d3fa5481608bf69" }, "downloads": -1, "filename": "cvxpy-1.1.1-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "e680714d98c5760994b6f89ee4fc2b54", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 811752, "upload_time": "2020-06-03T20:05:18", "upload_time_iso_8601": "2020-06-03T20:05:18.718651Z", "url": "https://files.pythonhosted.org/packages/74/62/9e5d79cb80c27150e4b232104e473643a96467c612d7c47c1b523ca9fc2d/cvxpy-1.1.1-cp35-cp35m-macosx_10_6_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c98feabb2e06f80ae10dcddb74e9421", "sha256": "3eed9f35e68bb3c28edb99eb899a2da1bcd7e066cbbbeadc8586fa56beb318ea" }, "downloads": -1, "filename": "cvxpy-1.1.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1c98feabb2e06f80ae10dcddb74e9421", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 763154, "upload_time": "2020-06-03T20:09:10", "upload_time_iso_8601": "2020-06-03T20:09:10.138777Z", "url": "https://files.pythonhosted.org/packages/a4/da/3e1db02ef1182afbe2d989d94f03a825e135cd44ee007744b7234d14714e/cvxpy-1.1.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9713e6d864328c6a68c4c7fe2ce73b98", "sha256": "8631b9da85f8bf4aa98aff470c081e7c87e7c34803828262abc4e076bede472b" }, "downloads": -1, "filename": "cvxpy-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9713e6d864328c6a68c4c7fe2ce73b98", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 815860, "upload_time": "2020-06-03T20:03:32", "upload_time_iso_8601": "2020-06-03T20:03:32.766559Z", "url": "https://files.pythonhosted.org/packages/c5/d4/b6bd65c10a51f00dd91005bc3758c2bc0de1d616d573897dcc4fe7b2f05c/cvxpy-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64074232a21c89a0fbd041ce05dfb9bc", "sha256": "94aa04ca903b06de85861e3eb52c0757ff87e5ef8a6029b376841800a9721c99" }, "downloads": -1, "filename": "cvxpy-1.1.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "64074232a21c89a0fbd041ce05dfb9bc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 763161, "upload_time": "2020-06-03T20:21:01", "upload_time_iso_8601": "2020-06-03T20:21:01.335237Z", "url": "https://files.pythonhosted.org/packages/f6/71/cba7f9ce9a2f795d5fcf903088d45a75752e10dc9909c404d6b85169d381/cvxpy-1.1.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "242efdaaf364d364f0de7fedf4cb3593", "sha256": "30f32a9c831c2c5b6d9c05912e1824dda122f21d48d76bc2555d5526a0a9c077" }, "downloads": -1, "filename": "cvxpy-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "242efdaaf364d364f0de7fedf4cb3593", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 815860, "upload_time": "2020-06-03T20:19:34", "upload_time_iso_8601": "2020-06-03T20:19:34.301407Z", "url": "https://files.pythonhosted.org/packages/f3/ee/53cb23c078967564a42848e613d327ff19495678b8551a01d5341f56c772/cvxpy-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b6a287888b87c0bac451f33366f602c", "sha256": "a7794f6c432532fe586b5aaa9a2e33996085bef47f9efdb513bea4a836eba8bb" }, "downloads": -1, "filename": "cvxpy-1.1.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2b6a287888b87c0bac451f33366f602c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 763166, "upload_time": "2020-06-03T20:31:21", "upload_time_iso_8601": "2020-06-03T20:31:21.654454Z", "url": "https://files.pythonhosted.org/packages/c9/69/247f116fad139f5a9f547f73b97eef528d5277312d8e31d27645d3494746/cvxpy-1.1.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28315385dbf521662d26f070b58a6dee", "sha256": "eeab58aa76f88f3b1e1ed889b97a5e8be1ffc0b40ea2476b410371cf4e79fee8" }, "downloads": -1, "filename": "cvxpy-1.1.1-py3.5-win-amd64.egg", "has_sig": false, "md5_digest": "28315385dbf521662d26f070b58a6dee", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": ">=3.5", "size": 1565074, "upload_time": "2020-06-03T20:09:11", "upload_time_iso_8601": "2020-06-03T20:09:11.271038Z", "url": "https://files.pythonhosted.org/packages/ac/db/43735aa93852cb3c70ec129b8fb62da2f2b9411583761098169f146dba9a/cvxpy-1.1.1-py3.5-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9321dd35a5638272ac46044751a02e87", "sha256": "076aa4888c64f876014bd48c099cad4105be4e010ff5bac6c4638ce06e7c3cb2" }, "downloads": -1, "filename": "cvxpy-1.1.1-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "9321dd35a5638272ac46044751a02e87", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1545140, "upload_time": "2020-06-03T20:21:02", "upload_time_iso_8601": "2020-06-03T20:21:02.644803Z", "url": "https://files.pythonhosted.org/packages/3b/a9/84b616dbc4f94f1da5ae0856d35eff329fd3a797c8a9176de8f9746db2dd/cvxpy-1.1.1-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25eec16b233a21b795a339cb88513507", "sha256": "6be170db207377126c2b4f1c6ed873f85d2c990642d80d64114783341b65bdbb" }, "downloads": -1, "filename": "cvxpy-1.1.1-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "25eec16b233a21b795a339cb88513507", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1545369, "upload_time": "2020-06-03T20:31:22", "upload_time_iso_8601": "2020-06-03T20:31:22.727473Z", "url": "https://files.pythonhosted.org/packages/4b/ae/3b47353f414e710d8b1db613dcdf34f3a8251c157a9c7b8f6d4d4a9a3284/cvxpy-1.1.1-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "655933b5a928852a9da34d651a453b4e", "sha256": "b8e90af9c0046394a73144ef1b93f1f69df1ba00779bb3d607add006179ba9d9" }, "downloads": -1, "filename": "cvxpy-1.1.1.tar.gz", "has_sig": false, "md5_digest": "655933b5a928852a9da34d651a453b4e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 990592, "upload_time": "2020-06-03T20:02:57", "upload_time_iso_8601": "2020-06-03T20:02:57.498994Z", "url": "https://files.pythonhosted.org/packages/fa/89/6e4f99b36ce2d002f2792529b130fd8ed5d7004c92ce8ae7d56496f51426/cvxpy-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "164d3c4748c0b354521ed0cc8f10656e", "sha256": "a10cdb8e6fb7f8363ec3f648e5cacf5fd944f2a9b9e5ae1ef69217e929241d95" }, "downloads": -1, "filename": "cvxpy-1.1.10-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "164d3c4748c0b354521ed0cc8f10656e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 792450, "upload_time": "2021-02-07T19:57:34", "upload_time_iso_8601": "2021-02-07T19:57:34.469963Z", "url": "https://files.pythonhosted.org/packages/11/3d/7f6d45f33022a5c10b3c4b716148425d8472568c29991fae506f66d1eb1d/cvxpy-1.1.10-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3cf27cb13ac30ad8f6703e2460889b3c", "sha256": "8a8dc1976f0ec1eaddac3b3ae34baffee6964f8c48c76c28990eb51162987c98" }, "downloads": -1, "filename": "cvxpy-1.1.10-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3cf27cb13ac30ad8f6703e2460889b3c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 845221, "upload_time": "2021-02-07T20:15:07", "upload_time_iso_8601": "2021-02-07T20:15:07.307447Z", "url": "https://files.pythonhosted.org/packages/ca/2e/d225886a0d77ffb12cceb06822872d4e6cd38225a5781981657efedd5bc8/cvxpy-1.1.10-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57b05ac5c3ef6363dc07d282309739d7", "sha256": "416345ebab5cbcdd5dec4a8bd4c68d6a66acee95e1cc8c1c65a01d6a35cfd7a8" }, "downloads": -1, "filename": "cvxpy-1.1.10-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "57b05ac5c3ef6363dc07d282309739d7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 818262, "upload_time": "2021-02-07T20:02:40", "upload_time_iso_8601": "2021-02-07T20:02:40.501280Z", "url": "https://files.pythonhosted.org/packages/a1/3f/8f4e7ec7c8a2046352708e574068ed775bc416633aba9686eef0faf1d698/cvxpy-1.1.10-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3a903fe5e0019439ec9a3d17774b721", "sha256": "47ec0d48a6c0303c3e6ea5a4a540be5062bc08126897527f971f777a51394754" }, "downloads": -1, "filename": "cvxpy-1.1.10-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d3a903fe5e0019439ec9a3d17774b721", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.5", "size": 845614, "upload_time": "2021-02-07T20:16:15", "upload_time_iso_8601": "2021-02-07T20:16:15.351767Z", "url": "https://files.pythonhosted.org/packages/51/e3/0a4c90b965c0e5536e015e243f25780c496ea947e8ac8c9fde117b39e345/cvxpy-1.1.10-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f2f305a61692e92bdcbb5c8099f6ba8", "sha256": "4e2cc596b893c97eb0c510dae9467dffa24220859a844669e123adda4e0b585a" }, "downloads": -1, "filename": "cvxpy-1.1.10-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "8f2f305a61692e92bdcbb5c8099f6ba8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.5", "size": 824617, "upload_time": "2021-02-07T20:07:55", "upload_time_iso_8601": "2021-02-07T20:07:55.538790Z", "url": "https://files.pythonhosted.org/packages/ce/a2/28e834b91027aaeb9ed9337b8f9d8a72cb7a167c9d261a558de016186e15/cvxpy-1.1.10-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89a255efdb92e0cd0d60251d785afa4e", "sha256": "70cb3b24f1209e6490a091446fdf1939a1b02f5f49af35b69935babd53c4c1fb" }, "downloads": -1, "filename": "cvxpy-1.1.10-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "89a255efdb92e0cd0d60251d785afa4e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.5", "size": 824124, "upload_time": "2021-02-07T20:22:53", "upload_time_iso_8601": "2021-02-07T20:22:53.919034Z", "url": "https://files.pythonhosted.org/packages/ad/d3/6a9c9d23393e9437cf67bfc1cd84142bcaebfd1c51b919300f4ac80da9f5/cvxpy-1.1.10-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9f7af730587378892a82d17d6ec71da", "sha256": "9caf7500f7ecf39b8c239b25ff0d53cc1327f080c97692547b6f5199bdfe9147" }, "downloads": -1, "filename": "cvxpy-1.1.10-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "a9f7af730587378892a82d17d6ec71da", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.5", "size": 825567, "upload_time": "2021-02-07T20:13:25", "upload_time_iso_8601": "2021-02-07T20:13:25.765728Z", "url": "https://files.pythonhosted.org/packages/40/4e/b07868c259df9764b78897b98ecb3a745494c3982d048280494d8ef39fc2/cvxpy-1.1.10-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f0b5bb73ad08169783de2408b1994b8", "sha256": "6d11bcf203c598a65504f3d65a4b0ad48c470c70875a589b7940e54ea0cfc017" }, "downloads": -1, "filename": "cvxpy-1.1.10-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "8f0b5bb73ad08169783de2408b1994b8", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1617326, "upload_time": "2021-02-07T19:57:35", "upload_time_iso_8601": "2021-02-07T19:57:35.878328Z", "url": "https://files.pythonhosted.org/packages/f4/99/eb1bdc571c199a37e2590c3db66bea3ec6eee7640c506b7c19b4de72688c/cvxpy-1.1.10-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32895749c30a71ba7c88fe4e1ad709c6", "sha256": "0829a6c4940b79fe0e168b28495f4111b0322c1d72abe438144873bd20ec6ec3" }, "downloads": -1, "filename": "cvxpy-1.1.10-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "32895749c30a71ba7c88fe4e1ad709c6", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1643181, "upload_time": "2021-02-07T20:02:41", "upload_time_iso_8601": "2021-02-07T20:02:41.717744Z", "url": "https://files.pythonhosted.org/packages/8f/25/f26d2d1af4c335c9ef4266f6ff2697a2aab39b9fc2338db3c1828200a15a/cvxpy-1.1.10-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c49c042750135caadbcafadfcbe1b842", "sha256": "af85475004d3635cc4a5b4afbe202dc8fb099ae214c4f49a113de8f620b607d3" }, "downloads": -1, "filename": "cvxpy-1.1.10-py3.8-win-amd64.egg", "has_sig": false, "md5_digest": "c49c042750135caadbcafadfcbe1b842", "packagetype": "bdist_egg", "python_version": "3.8", "requires_python": ">=3.5", "size": 1653405, "upload_time": "2021-02-07T20:07:56", "upload_time_iso_8601": "2021-02-07T20:07:56.778339Z", "url": "https://files.pythonhosted.org/packages/55/8d/081b61e28da65d5a2c04e48966c68e863c6a52341c4eddde94dd0ebb2f40/cvxpy-1.1.10-py3.8-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d69a688cfe377336976e8d92baecc21", "sha256": "176382537612d399b2e7f5f2125d0b657a14de70fb67abd33d52da9a8abfb92f" }, "downloads": -1, "filename": "cvxpy-1.1.10-py3.9-win-amd64.egg", "has_sig": false, "md5_digest": "7d69a688cfe377336976e8d92baecc21", "packagetype": "bdist_egg", "python_version": "3.9", "requires_python": ">=3.5", "size": 1655509, "upload_time": "2021-02-07T20:13:27", "upload_time_iso_8601": "2021-02-07T20:13:27.160271Z", "url": "https://files.pythonhosted.org/packages/e4/1e/707850ffda59fefb488a6e6db9e536b9ea8e813e3974ca26239a1e0ff71c/cvxpy-1.1.10-py3.9-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7dfb43e5627d9f662a299c4854dfdfa0", "sha256": "ecd0a8b89f799cea254928dea8792d9c69c37db0bd830b4cda629b2b2be52270" }, "downloads": -1, "filename": "cvxpy-1.1.10.tar.gz", "has_sig": false, "md5_digest": "7dfb43e5627d9f662a299c4854dfdfa0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 1035344, "upload_time": "2021-02-07T20:15:43", "upload_time_iso_8601": "2021-02-07T20:15:43.993809Z", "url": "https://files.pythonhosted.org/packages/1e/25/c960568e00b8eea26b339e2b56121028c98bddb6ad66c4b9e1d71889f849/cvxpy-1.1.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.11": [ { "comment_text": "", "digests": { "md5": "f6cc827672ddbe41be46c4eb52f26577", "sha256": "dd4180bf75b4836322d71f6508a1f683e7f770e0ace8604362be705ee6b519f8" }, "downloads": -1, "filename": "cvxpy-1.1.11-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f6cc827672ddbe41be46c4eb52f26577", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 792155, "upload_time": "2021-03-05T05:53:03", "upload_time_iso_8601": "2021-03-05T05:53:03.151157Z", "url": "https://files.pythonhosted.org/packages/31/ee/de64dc63c0bbe51ed13dd7fec0d499bf2047a771ca99f08de7ea34b32daf/cvxpy-1.1.11-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e71348968e9f86ea30058e551ba2e135", "sha256": "deac0d22be9c95bd10a0b18465fa65490c481faed4a63aa60c869d9c37dc98e5" }, "downloads": -1, "filename": "cvxpy-1.1.11-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e71348968e9f86ea30058e551ba2e135", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 848290, "upload_time": "2021-03-05T05:59:11", "upload_time_iso_8601": "2021-03-05T05:59:11.453680Z", "url": "https://files.pythonhosted.org/packages/9c/72/a38cc72c27ccef9acb11d82653896c8c14036ce42d227ab3b011e0ef89d7/cvxpy-1.1.11-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3474f901981c827f10cf1398b29e7843", "sha256": "eeec527d85c39d07af2bf645e35fbb7008dd9194c4eb0a518ccb5e976f962f6b" }, "downloads": -1, "filename": "cvxpy-1.1.11-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "3474f901981c827f10cf1398b29e7843", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 819833, "upload_time": "2021-03-05T05:58:11", "upload_time_iso_8601": "2021-03-05T05:58:11.901883Z", "url": "https://files.pythonhosted.org/packages/7b/d2/6df4162a5a283c7eab37ead946e98c1dd26635ec014f9f58c1bce3d04dba/cvxpy-1.1.11-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "684a1781332639dc7ab927e54607b730", "sha256": "ced621c6fc66592ba2e120273d9ee2a20552a01a7c65855c7b27e406a9e6e16e" }, "downloads": -1, "filename": "cvxpy-1.1.11-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "684a1781332639dc7ab927e54607b730", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.5", "size": 848886, "upload_time": "2021-03-05T05:57:24", "upload_time_iso_8601": "2021-03-05T05:57:24.266790Z", "url": "https://files.pythonhosted.org/packages/bd/45/d490d0b47e49e0d0842dd0ced66d7ad106d4af00120b397c0bee58764c56/cvxpy-1.1.11-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75bbb961c32f51b1515ad85576d4e3a1", "sha256": "802de95adfecb013ca0809cc969aa20cc1ddb2ee7e12b8b93018e7b4556950cf" }, "downloads": -1, "filename": "cvxpy-1.1.11-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "75bbb961c32f51b1515ad85576d4e3a1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.5", "size": 821894, "upload_time": "2021-03-05T06:03:30", "upload_time_iso_8601": "2021-03-05T06:03:30.296047Z", "url": "https://files.pythonhosted.org/packages/17/35/ae3afe7fd528e6e0d5fe13ca76b3e3658d29490fe3ce9e8fbb0c7bfe2515/cvxpy-1.1.11-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6781ef6027155bc1c15ce779fb8ea6d6", "sha256": "7ac1a226eb381829af950479d8ab0a6a910b5d6dbaccbbff5f1fec888acbaea9" }, "downloads": -1, "filename": "cvxpy-1.1.11-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6781ef6027155bc1c15ce779fb8ea6d6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.5", "size": 826237, "upload_time": "2021-03-05T06:05:14", "upload_time_iso_8601": "2021-03-05T06:05:14.931101Z", "url": "https://files.pythonhosted.org/packages/6f/ac/9827b3a8085c827324ed4b1dfd9f130e2426e259c41defdd1024f1295696/cvxpy-1.1.11-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0cc4725e258716a9e8dfa288e6329d0", "sha256": "bd5c439ded5a7d17ee39deeb13d374038a815e97196f57debcb8591a15c88d76" }, "downloads": -1, "filename": "cvxpy-1.1.11-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "c0cc4725e258716a9e8dfa288e6329d0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.5", "size": 822809, "upload_time": "2021-03-05T06:08:43", "upload_time_iso_8601": "2021-03-05T06:08:43.793611Z", "url": "https://files.pythonhosted.org/packages/61/18/e4b32f23a7542a9fdc328bd51cc67921544fdf0c3911381c4dc8e405248e/cvxpy-1.1.11-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a716cbf49ddb95436544b66041fe1222", "sha256": "7626221a4a354415c23b2e3e9688d63906c28a608af61be20e10439d5c249956" }, "downloads": -1, "filename": "cvxpy-1.1.11-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "a716cbf49ddb95436544b66041fe1222", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1619025, "upload_time": "2021-03-05T05:53:04", "upload_time_iso_8601": "2021-03-05T05:53:04.541131Z", "url": "https://files.pythonhosted.org/packages/f2/df/cd019086077e0d7fa6c0628857a93729ee94b761bfaa2bd933adc0105151/cvxpy-1.1.11-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2342ceb697a12c3ef34dce10fed6def2", "sha256": "7383e89936718eee5582d220e84f3d0907343a061e03b93d1daf828beecc0ab4" }, "downloads": -1, "filename": "cvxpy-1.1.11-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "2342ceb697a12c3ef34dce10fed6def2", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1646830, "upload_time": "2021-03-05T05:58:12", "upload_time_iso_8601": "2021-03-05T05:58:12.874110Z", "url": "https://files.pythonhosted.org/packages/7d/7d/fc5ced6d51d052eb0b9b98f74f5876a53c44f0cc9a949d3a79f95ab06a07/cvxpy-1.1.11-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bc82b9a912251080aa2b89d69f37738", "sha256": "cdec82bee09863c2d9a45659c0ba7dfcfa6af934276812ba251061c082f82119" }, "downloads": -1, "filename": "cvxpy-1.1.11-py3.8-win-amd64.egg", "has_sig": false, "md5_digest": "3bc82b9a912251080aa2b89d69f37738", "packagetype": "bdist_egg", "python_version": "3.8", "requires_python": ">=3.5", "size": 1653185, "upload_time": "2021-03-05T06:03:31", "upload_time_iso_8601": "2021-03-05T06:03:31.693384Z", "url": "https://files.pythonhosted.org/packages/af/9f/fca995ee9418f91b59d25ffe1bc1af41fdbf29837b82d52ff91cef626a99/cvxpy-1.1.11-py3.8-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50c24162bb91fedb05392799c5fefc5d", "sha256": "313fd564caba0afb74ba8a4909c97003296533bc29575763495c87c3a6667e52" }, "downloads": -1, "filename": "cvxpy-1.1.11-py3.9-win-amd64.egg", "has_sig": false, "md5_digest": "50c24162bb91fedb05392799c5fefc5d", "packagetype": "bdist_egg", "python_version": "3.9", "requires_python": ">=3.5", "size": 1654507, "upload_time": "2021-03-05T06:08:45", "upload_time_iso_8601": "2021-03-05T06:08:45.063512Z", "url": "https://files.pythonhosted.org/packages/b8/2a/d4288f9f193e9d7c93899859022e240f4de12201762df6cff5bfcf8ea21b/cvxpy-1.1.11-py3.9-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08a524711e91af0968441de70e246ba8", "sha256": "5b8aa5cbe834ed0d62609efafed19936404f6bea1abe14c3518450ddc67eb352" }, "downloads": -1, "filename": "cvxpy-1.1.11.tar.gz", "has_sig": false, "md5_digest": "08a524711e91af0968441de70e246ba8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 1258059, "upload_time": "2021-03-05T05:56:52", "upload_time_iso_8601": "2021-03-05T05:56:52.325637Z", "url": "https://files.pythonhosted.org/packages/b5/7e/ec053f8a89f0c380379f9af2066e55fa77adfd5ef7fa63923097b0e2896b/cvxpy-1.1.11.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.12": [ { "comment_text": "", "digests": { "md5": "9a6594680f3a78b45df758212384c98c", "sha256": "48e9bae36a43453659ca5d0c85e78f1eb0dfe629b8aa0f023f65aa59d0ac04d7" }, "downloads": -1, "filename": "cvxpy-1.1.12-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9a6594680f3a78b45df758212384c98c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 857098, "upload_time": "2021-05-17T18:35:08", "upload_time_iso_8601": "2021-05-17T18:35:08.170377Z", "url": "https://files.pythonhosted.org/packages/bb/98/74526a527ddeee480a7457f380470b006a62b68bb95c1fd5494e2efb2451/cvxpy-1.1.12-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b9de925dbd4a5165fdf98b17aa488e2", "sha256": "fe0bcb7f83b5d4deb760bf033cb72ab97c8e0770b116e08d96e9726cb1a52c01" }, "downloads": -1, "filename": "cvxpy-1.1.12-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3b9de925dbd4a5165fdf98b17aa488e2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 857044, "upload_time": "2021-05-17T17:44:06", "upload_time_iso_8601": "2021-05-17T17:44:06.342783Z", "url": "https://files.pythonhosted.org/packages/12/64/50def90e86730cd161bbdd78b8aa9cd057736a1e0caff325f430a430244c/cvxpy-1.1.12-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da4356d7996ca2a483b63ead84b5fc3e", "sha256": "86f8e4aa1a79482431b89aa526249d9fda04c74e04a3ec224d1175d281643d71" }, "downloads": -1, "filename": "cvxpy-1.1.12-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "da4356d7996ca2a483b63ead84b5fc3e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 798289, "upload_time": "2021-04-07T23:28:04", "upload_time_iso_8601": "2021-04-07T23:28:04.319935Z", "url": "https://files.pythonhosted.org/packages/1b/0c/3272e1f0acb8a6688d25b7682ab7a941d606534cd815c60ea71c50a55e70/cvxpy-1.1.12-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f144b70319762a40b9b5061cd5c264d2", "sha256": "90b09a7361b9c614166fa673e1fe9321317df6939135330e1621b9a0bf10e3a8" }, "downloads": -1, "filename": "cvxpy-1.1.12-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f144b70319762a40b9b5061cd5c264d2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 854416, "upload_time": "2021-04-07T23:36:41", "upload_time_iso_8601": "2021-04-07T23:36:41.631102Z", "url": "https://files.pythonhosted.org/packages/2e/62/f2da75379ea244292650ed2fb1e02609be53e70ed295fd53cbb15b5fa792/cvxpy-1.1.12-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c26d1f3e8deae4a4150b97ef702e8596", "sha256": "084e5292f2a13133a1cd28d68f5af1df33a5119b0f1aec7cecf834eea3e2d11d" }, "downloads": -1, "filename": "cvxpy-1.1.12-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c26d1f3e8deae4a4150b97ef702e8596", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 825971, "upload_time": "2021-04-07T23:33:53", "upload_time_iso_8601": "2021-04-07T23:33:53.951178Z", "url": "https://files.pythonhosted.org/packages/e6/32/fdc5d1def785bc9353837c7dbe9fbcfd2509d6d17c40c583e0bcb65edcf6/cvxpy-1.1.12-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c98e728865cc7e9fd654f7f2b4833b41", "sha256": "575f6e1c70274008961edff97a7494701faed20b40fbd49327010c0e7d186256" }, "downloads": -1, "filename": "cvxpy-1.1.12-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c98e728865cc7e9fd654f7f2b4833b41", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.5", "size": 855006, "upload_time": "2021-04-07T23:37:15", "upload_time_iso_8601": "2021-04-07T23:37:15.151341Z", "url": "https://files.pythonhosted.org/packages/7b/9a/3e815ebb7a0d0ab985a620410d880622245fce1d89bc004b5f916895ce1c/cvxpy-1.1.12-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5c0648cd85abc56c78f35c153ada82d", "sha256": "76d04444cb50ad2840bbc72a625ac246b5eeeeb580ee20c71bec057822667738" }, "downloads": -1, "filename": "cvxpy-1.1.12-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "f5c0648cd85abc56c78f35c153ada82d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.5", "size": 827934, "upload_time": "2021-04-07T23:39:12", "upload_time_iso_8601": "2021-04-07T23:39:12.514794Z", "url": "https://files.pythonhosted.org/packages/89/fb/ca3f719784196b00a304a3a984598c34ed35d80e3cccff0a0d3cc9efd55e/cvxpy-1.1.12-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5496960dff8df91cfd170f5257a2dc6", "sha256": "2de5e0e75316839bc71b5df2c2db0131cee7ef06dac566c6c44dc852c091502b" }, "downloads": -1, "filename": "cvxpy-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d5496960dff8df91cfd170f5257a2dc6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.5", "size": 832357, "upload_time": "2021-04-07T23:44:53", "upload_time_iso_8601": "2021-04-07T23:44:53.898538Z", "url": "https://files.pythonhosted.org/packages/4f/7e/0c17832ba5a1fd232bebf0398e738c517b2b88bb6b27012f6627e32db740/cvxpy-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01903f611c99d62a04e5129183fac90f", "sha256": "9fa4d033ab31855aea090e4b358017b36880390a7d0e6e97ecc5226c77eab489" }, "downloads": -1, "filename": "cvxpy-1.1.12-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "01903f611c99d62a04e5129183fac90f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.5", "size": 828870, "upload_time": "2021-04-07T23:44:39", "upload_time_iso_8601": "2021-04-07T23:44:39.893027Z", "url": "https://files.pythonhosted.org/packages/89/b2/891c36bc0647361a5466811c2e7a12915ea93d48c35434b4fd64f5b1e556/cvxpy-1.1.12-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d94807e4ef7e263734a992bcff689e7", "sha256": "27ff263c80700b097d3714ba34161bd284f736f3029dfa89a95bf4c4a2801cb9" }, "downloads": -1, "filename": "cvxpy-1.1.12-py3.5-macosx-10.9-x86_64.egg", "has_sig": false, "md5_digest": "3d94807e4ef7e263734a992bcff689e7", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": ">=3.5", "size": 1721848, "upload_time": "2021-05-17T18:35:10", "upload_time_iso_8601": "2021-05-17T18:35:10.795334Z", "url": "https://files.pythonhosted.org/packages/9f/38/fd757a890aeef9c97a732c2e9361bcaf9ca30ddd82ede0e7f51bc03f736e/cvxpy-1.1.12-py3.5-macosx-10.9-x86_64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49f673523a95ae14101fa9a62c29a747", "sha256": "7c1c5371dda78580f0892fba6776abb6e43bdb45589311c3179a057f1a984110" }, "downloads": -1, "filename": "cvxpy-1.1.12-py3.6-macosx-10.7-x86_64.egg", "has_sig": false, "md5_digest": "49f673523a95ae14101fa9a62c29a747", "packagetype": "bdist_egg", "python_version": "1.1.12", "requires_python": ">=3.5", "size": 1699464, "upload_time": "2021-05-17T17:44:08", "upload_time_iso_8601": "2021-05-17T17:44:08.696491Z", "url": "https://files.pythonhosted.org/packages/15/0a/53b9f7900101bf41c7f82961c6b69cc2f5bf603325875a32fcc2821c19b6/cvxpy-1.1.12-py3.6-macosx-10.7-x86_64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1ff11ddf84e7fb5e76d0536ae500e76", "sha256": "d2c28e0eea1b6dc70262c9ed8b63c5c1747d85c28b3ec24cbaab07583b3ad729" }, "downloads": -1, "filename": "cvxpy-1.1.12-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "b1ff11ddf84e7fb5e76d0536ae500e76", "packagetype": "bdist_egg", "python_version": "1.1.12", "requires_python": ">=3.5", "size": 1635031, "upload_time": "2021-04-07T23:28:05", "upload_time_iso_8601": "2021-04-07T23:28:05.890766Z", "url": "https://files.pythonhosted.org/packages/56/d5/e50deaebb16e0bcde4f6d3ccff9a87aa1f034e05c2b47f052f452b408926/cvxpy-1.1.12-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b67fde67e9672998f910508b0ac527af", "sha256": "44d0e3d60693831ac70bdc9b2e23faf84401347bfcdef4eb5da5ae22ac57f5ff" }, "downloads": -1, "filename": "cvxpy-1.1.12-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "b67fde67e9672998f910508b0ac527af", "packagetype": "bdist_egg", "python_version": "1.1.12", "requires_python": ">=3.5", "size": 1662663, "upload_time": "2021-04-07T23:33:55", "upload_time_iso_8601": "2021-04-07T23:33:55.123812Z", "url": "https://files.pythonhosted.org/packages/5f/4f/342028cf9fac5ad7a1fafe14d923999e9fe5f2ec0007e5118c4271da8cc5/cvxpy-1.1.12-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e804256776b956a8eb207bdc5ce6ea81", "sha256": "c86f8de9a63ccbd45844a4482df8099824688b5329060f089aad1c3beb939190" }, "downloads": -1, "filename": "cvxpy-1.1.12-py3.8-win-amd64.egg", "has_sig": false, "md5_digest": "e804256776b956a8eb207bdc5ce6ea81", "packagetype": "bdist_egg", "python_version": "3.8", "requires_python": ">=3.5", "size": 1668325, "upload_time": "2021-04-07T23:39:13", "upload_time_iso_8601": "2021-04-07T23:39:13.634353Z", "url": "https://files.pythonhosted.org/packages/71/40/f3264a6e3481681f3023002430d612964a51c3ccc8780686e2522cdf5a9f/cvxpy-1.1.12-py3.8-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25043f4e1f832e72890a89b060bf680e", "sha256": "08c720706abd94c25903a4db5dd2171232e72d0969b874a5de9a8181f96357d5" }, "downloads": -1, "filename": "cvxpy-1.1.12-py3.9-win-amd64.egg", "has_sig": false, "md5_digest": "25043f4e1f832e72890a89b060bf680e", "packagetype": "bdist_egg", "python_version": "3.9", "requires_python": ">=3.5", "size": 1670670, "upload_time": "2021-04-07T23:44:40", "upload_time_iso_8601": "2021-04-07T23:44:40.940499Z", "url": "https://files.pythonhosted.org/packages/b0/02/82e1bdcb014e657ec61c22362cc48c459f2fc99de2a450ac82b903c242f2/cvxpy-1.1.12-py3.9-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42986b9fe2780e79aceff6de8f698d3f", "sha256": "b499ebfae4fc645e9523621573ffcb1c5b6854a1b5c0ce1d66a8a9a458605807" }, "downloads": -1, "filename": "cvxpy-1.1.12.tar.gz", "has_sig": false, "md5_digest": "42986b9fe2780e79aceff6de8f698d3f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 1262105, "upload_time": "2021-04-07T23:36:43", "upload_time_iso_8601": "2021-04-07T23:36:43.675612Z", "url": "https://files.pythonhosted.org/packages/83/47/fd1e818b8da30ef18695a0fbf9b66611ab18506f0a44fc69480a75f4db1b/cvxpy-1.1.12.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.13": [ { "comment_text": "", "digests": { "md5": "3d63df25d076a293daf591d743fed282", "sha256": "bef18063e2f0972ed1d0e3aa7e4023539c08b4263a2d4c1b38f566be321f87f9" }, "downloads": -1, "filename": "cvxpy-1.1.13-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3d63df25d076a293daf591d743fed282", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 860712, "upload_time": "2021-05-24T22:17:40", "upload_time_iso_8601": "2021-05-24T22:17:40.099542Z", "url": "https://files.pythonhosted.org/packages/a6/79/b23d8f40416c7763009ecaef74800409ab012882aaed3747c92224f64932/cvxpy-1.1.13-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b925fc68078ad2e8881982b18097ff9", "sha256": "32307d35c68fd6951bfcf52c4954a298204c098c667162dd7067bae79fbbd157" }, "downloads": -1, "filename": "cvxpy-1.1.13-cp36-cp36m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "3b925fc68078ad2e8881982b18097ff9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2736425, "upload_time": "2021-05-24T22:11:48", "upload_time_iso_8601": "2021-05-24T22:11:48.569987Z", "url": "https://files.pythonhosted.org/packages/30/7c/43fcbd855da962298b9d1740856a3cd89e534c4bd5a6332f41665cdec541/cvxpy-1.1.13-cp36-cp36m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed075a0394b7da8d963f83ba1a119ea5", "sha256": "bd141b2020e61f9defa4844c62dcd48ea586a79b7d4cb1ed3eca40153956f64f" }, "downloads": -1, "filename": "cvxpy-1.1.13-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ed075a0394b7da8d963f83ba1a119ea5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 802650, "upload_time": "2021-05-24T20:54:55", "upload_time_iso_8601": "2021-05-24T20:54:55.246779Z", "url": "https://files.pythonhosted.org/packages/69/52/299b9e9154372529ca3d7dfab302dc41a2554b193d4c603a3ad5fb4977ee/cvxpy-1.1.13-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f58975efa9f7d27677ab6449ae235abf", "sha256": "7f74c0c200f4e1a28bd4e16b0deb85ed284a95d61c35df9a740dac8bf019853c" }, "downloads": -1, "filename": "cvxpy-1.1.13-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f58975efa9f7d27677ab6449ae235abf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 860659, "upload_time": "2021-05-24T22:22:18", "upload_time_iso_8601": "2021-05-24T22:22:18.942823Z", "url": "https://files.pythonhosted.org/packages/9e/40/2516f43b1c5383c2a29a2c8359571d1dcd7ee643745a9315988767755eb0/cvxpy-1.1.13-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca5c035c529d552f1b43c9e8c665d5bb", "sha256": "12410725c1ae5c269472510a36071a83478f004c501452a9b0be0625fa69e1e7" }, "downloads": -1, "filename": "cvxpy-1.1.13-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "ca5c035c529d552f1b43c9e8c665d5bb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2737755, "upload_time": "2021-05-24T22:11:42", "upload_time_iso_8601": "2021-05-24T22:11:42.440260Z", "url": "https://files.pythonhosted.org/packages/1d/69/d7537c72a5927cd648b8e8b3ea5165d078c21f9571db247776519490e951/cvxpy-1.1.13-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3033c27c830b238a27f876f4ad78a1d0", "sha256": "69a8af1f306bddf9da545ae4bc24c9b960dd6f9597482de79e029bda78a25011" }, "downloads": -1, "filename": "cvxpy-1.1.13-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3033c27c830b238a27f876f4ad78a1d0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 861203, "upload_time": "2021-05-24T22:28:13", "upload_time_iso_8601": "2021-05-24T22:28:13.261570Z", "url": "https://files.pythonhosted.org/packages/e1/6d/b230362bed975f74371cd71bbd298514e70ed773be99607f91008f134ef2/cvxpy-1.1.13-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34db2121f043f587972076e0d1af17b0", "sha256": "c9862eace2b16906c7feea31a8af1f3f3ec52956c9bb7c27bc252f95d9757151" }, "downloads": -1, "filename": "cvxpy-1.1.13-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "34db2121f043f587972076e0d1af17b0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2729899, "upload_time": "2021-05-24T22:15:20", "upload_time_iso_8601": "2021-05-24T22:15:20.150782Z", "url": "https://files.pythonhosted.org/packages/79/49/7a5dfca47f163cbac88961e99254f142658e83dba522ffc1c2a2c7bd9e16/cvxpy-1.1.13-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0d3e1cfde5df619e47353a10b07e18c", "sha256": "1d0c1a30dcc2ef410028eed98862b131b4e08c94b8ace7388545d87dd519e312" }, "downloads": -1, "filename": "cvxpy-1.1.13-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "e0d3e1cfde5df619e47353a10b07e18c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 832449, "upload_time": "2021-05-24T21:05:04", "upload_time_iso_8601": "2021-05-24T21:05:04.808251Z", "url": "https://files.pythonhosted.org/packages/fe/07/0f325846da64e41e975d3f02d2597f2282bb4b72ff0c7c0e65b3cee42999/cvxpy-1.1.13-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53dba793feec27c31fa99498a17d9e98", "sha256": "d246a237499510934c49250f69eaf6393d97976f7237f2079674c61cc0cdcd7d" }, "downloads": -1, "filename": "cvxpy-1.1.13-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "53dba793feec27c31fa99498a17d9e98", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 838023, "upload_time": "2021-05-24T22:20:50", "upload_time_iso_8601": "2021-05-24T22:20:50.786782Z", "url": "https://files.pythonhosted.org/packages/aa/82/e41dca14b3973a95b4de24f7c53821a9515850a89ed39ff23fd48e2cd4c5/cvxpy-1.1.13-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08d4bb401cbcead9cfb3e093f7796965", "sha256": "8334e5f51732341e97c637d27f8be3e70bb995b7289fd517535f7e10dcd0f42e" }, "downloads": -1, "filename": "cvxpy-1.1.13-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "08d4bb401cbcead9cfb3e093f7796965", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 865600, "upload_time": "2021-05-24T22:10:00", "upload_time_iso_8601": "2021-05-24T22:10:00.187327Z", "url": "https://files.pythonhosted.org/packages/22/61/4c5a17673b652fda8789c3df4cd446cf357583c8158ee55d8a8281e30074/cvxpy-1.1.13-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22e2f71e87b4678c1033d4bcccec97f0", "sha256": "331f7277cefac3eec64755dd15fc5c5c692440e460dc564e288b7f88d3d8b795" }, "downloads": -1, "filename": "cvxpy-1.1.13-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "22e2f71e87b4678c1033d4bcccec97f0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 833252, "upload_time": "2021-05-24T21:10:45", "upload_time_iso_8601": "2021-05-24T21:10:45.990270Z", "url": "https://files.pythonhosted.org/packages/2b/4a/0b738f9fc4d288c3f01e79dc7d80b0ffcf8c9cc1a90344d7d86928c281b0/cvxpy-1.1.13-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fcc0a6c2da2bebd1ec805e2544dad25e", "sha256": "8eb8d55b1968dfe7dd8d778b31bf0eee9654b252572b916467f94916a840b7cf" }, "downloads": -1, "filename": "cvxpy-1.1.13-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "fcc0a6c2da2bebd1ec805e2544dad25e", "packagetype": "bdist_egg", "python_version": "1.1.13", "requires_python": ">=3.6", "size": 1644090, "upload_time": "2021-05-24T20:54:57", "upload_time_iso_8601": "2021-05-24T20:54:57.538531Z", "url": "https://files.pythonhosted.org/packages/7f/02/f193724231b7366e098893c73482d66cbd8f719e966e33851b7faf1318b6/cvxpy-1.1.13-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b693a2132ab8dfeaadb3cd1d3a7ee874", "sha256": "5d118155f4024976f547be2c78d7d0eaea469d4856ad302122d387b4e0d09702" }, "downloads": -1, "filename": "cvxpy-1.1.13-py3.8-win-amd64.egg", "has_sig": false, "md5_digest": "b693a2132ab8dfeaadb3cd1d3a7ee874", "packagetype": "bdist_egg", "python_version": "3.8", "requires_python": ">=3.6", "size": 1678548, "upload_time": "2021-05-24T21:05:06", "upload_time_iso_8601": "2021-05-24T21:05:06.098282Z", "url": "https://files.pythonhosted.org/packages/70/8f/251891c74ce77858f05e906932ab52bd7b0f31ba4d9f54e15c869bb56927/cvxpy-1.1.13-py3.8-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34b5cfbcac58cd92d9335d32e7f390f1", "sha256": "87cfd0918ab1332dca342231112af811b6c0bd799c64fe5de30bff1c5b1ce670" }, "downloads": -1, "filename": "cvxpy-1.1.13-py3.9-win-amd64.egg", "has_sig": false, "md5_digest": "34b5cfbcac58cd92d9335d32e7f390f1", "packagetype": "bdist_egg", "python_version": "3.9", "requires_python": ">=3.6", "size": 1679434, "upload_time": "2021-05-24T21:10:47", "upload_time_iso_8601": "2021-05-24T21:10:47.310988Z", "url": "https://files.pythonhosted.org/packages/a1/03/3560911d770d1eca2d7d2bfef83ff0d6e1f70361b10f2d187d8691494ba4/cvxpy-1.1.13-py3.9-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61d6f3738c12d2b03bfd9b39ee66d6d4", "sha256": "a9c781e74ad76097b47b86456cb3a943898f7ec9ac8f47bcefc922051cdc4a04" }, "downloads": -1, "filename": "cvxpy-1.1.13.tar.gz", "has_sig": false, "md5_digest": "61d6f3738c12d2b03bfd9b39ee66d6d4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1283375, "upload_time": "2021-05-24T22:28:14", "upload_time_iso_8601": "2021-05-24T22:28:14.882021Z", "url": "https://files.pythonhosted.org/packages/f0/95/e7eb169a7802fe0c5c50dd7f29c2e9d357b5f29c70adc3f5ca2ab684a04b/cvxpy-1.1.13.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.14": [ { "comment_text": "", "digests": { "md5": "023da8a313f883518b5da532642222d2", "sha256": "452e94b1ea4585a80539fbcf59f74c5aff1668afcb76f313ec6db20014a1587c" }, "downloads": -1, "filename": "cvxpy-1.1.14-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "023da8a313f883518b5da532642222d2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 867564, "upload_time": "2021-07-24T00:30:08", "upload_time_iso_8601": "2021-07-24T00:30:08.917767Z", "url": "https://files.pythonhosted.org/packages/6a/f5/ad0af3bfe3b2b90cbe2211d4a26d14b17823bed8ab05aedf6c25b5a461bf/cvxpy-1.1.14-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58eacb0d66e494ec9a3e1af981620543", "sha256": "8af22d459e314dbef919a6b93a2de6676c8efb917f5c801b96aca106dd1803e3" }, "downloads": -1, "filename": "cvxpy-1.1.14-cp36-cp36m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "58eacb0d66e494ec9a3e1af981620543", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2743043, "upload_time": "2021-07-24T00:24:25", "upload_time_iso_8601": "2021-07-24T00:24:25.953915Z", "url": "https://files.pythonhosted.org/packages/95/a9/d972368f8628815078c273221251cccb2107be9fbbe2dc9f5f39df806143/cvxpy-1.1.14-cp36-cp36m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11f292ad0acf357e4e94c7ca914871ce", "sha256": "441fc4e8022d981abe463a615be77e18dcabef696311b708905d4d679a1184ca" }, "downloads": -1, "filename": "cvxpy-1.1.14-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "11f292ad0acf357e4e94c7ca914871ce", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 845091, "upload_time": "2021-07-24T00:26:28", "upload_time_iso_8601": "2021-07-24T00:26:28.812457Z", "url": "https://files.pythonhosted.org/packages/3b/d2/7630191c9115b7f3dd0bfa74f0ca6bbaacdcfe7322b0b09c4ef7b805e422/cvxpy-1.1.14-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "73b12c91d6c145b6c22e97f1e8f63be3", "sha256": "a59b904bb49acafcb7f3648393e727ee9bb0cd8c73e3b235280889c6a2ce7db3" }, "downloads": -1, "filename": "cvxpy-1.1.14-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "73b12c91d6c145b6c22e97f1e8f63be3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 867536, "upload_time": "2021-07-24T00:30:08", "upload_time_iso_8601": "2021-07-24T00:30:08.660345Z", "url": "https://files.pythonhosted.org/packages/03/ac/1a258aa83b284d095581263f638857d7f72c781c096cb53b0d324d494a15/cvxpy-1.1.14-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d799d0db5c47654653a7d60ea9b8ac1", "sha256": "371060c28751832f9126e49879dbef3e27e894f1390e97916fcc0e6adda310ad" }, "downloads": -1, "filename": "cvxpy-1.1.14-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "9d799d0db5c47654653a7d60ea9b8ac1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2744427, "upload_time": "2021-07-24T00:24:13", "upload_time_iso_8601": "2021-07-24T00:24:13.086970Z", "url": "https://files.pythonhosted.org/packages/0d/ba/4544f01b1ac28d78413e8e45db07a98abeca032ff592d8788eed9e975016/cvxpy-1.1.14-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66676a45514ec44284d78ead22f01a12", "sha256": "38a93a1b12452d0aa0064a761cfdde766a8e69ad2e8feccb7390059bcecfc7e1" }, "downloads": -1, "filename": "cvxpy-1.1.14-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "66676a45514ec44284d78ead22f01a12", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 845087, "upload_time": "2021-07-24T00:24:18", "upload_time_iso_8601": "2021-07-24T00:24:18.291670Z", "url": "https://files.pythonhosted.org/packages/6a/0d/18945e1e51483f91a75761622d8c544191f833c8501be947447eeec1252d/cvxpy-1.1.14-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64af41197cbd465b36f4b7774f9408e2", "sha256": "c63ed935c69f415da483cad3ad3c54f105cc632286e25f9e7f8c15b9426d31ba" }, "downloads": -1, "filename": "cvxpy-1.1.14-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "64af41197cbd465b36f4b7774f9408e2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 868057, "upload_time": "2021-07-24T00:31:54", "upload_time_iso_8601": "2021-07-24T00:31:54.964672Z", "url": "https://files.pythonhosted.org/packages/55/d2/5185d68cd073518f7e0b8da7b8746eb60653b512d7ac54b00aa818d5610a/cvxpy-1.1.14-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42fdaec1585a6fb8ae89c9fdd85dd73d", "sha256": "1607f1ea86acdb69c36e4b0c837c1b172f72161b0dfeb05c8b025857c3cd6ca0" }, "downloads": -1, "filename": "cvxpy-1.1.14-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "42fdaec1585a6fb8ae89c9fdd85dd73d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2736583, "upload_time": "2021-07-24T00:25:41", "upload_time_iso_8601": "2021-07-24T00:25:41.804866Z", "url": "https://files.pythonhosted.org/packages/0f/ee/cd12c529563cd9aaaecc9f1f7a2cb438b80b67f8c6cc990a64960fc57611/cvxpy-1.1.14-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1171c6c66c94ded390aadbce581d8951", "sha256": "2df2efec07dc1573baa60503e549ed6375ef76fd890003ea514ab662ac2a5bc7" }, "downloads": -1, "filename": "cvxpy-1.1.14-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "1171c6c66c94ded390aadbce581d8951", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 845810, "upload_time": "2021-07-24T00:25:51", "upload_time_iso_8601": "2021-07-24T00:25:51.656844Z", "url": "https://files.pythonhosted.org/packages/c3/0e/14ab3acb8039115fc9d1a2634eb88459c27394e467b96de7c70c9a8a5ae3/cvxpy-1.1.14-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bfe78e5f7e2897df2b55b1501bdc190f", "sha256": "ac61cb8b47cbbd5256dc3b8fb9d55e584544af5192a4f8fa2c82a154d112df35" }, "downloads": -1, "filename": "cvxpy-1.1.14-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bfe78e5f7e2897df2b55b1501bdc190f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 844874, "upload_time": "2021-07-24T00:29:46", "upload_time_iso_8601": "2021-07-24T00:29:46.266710Z", "url": "https://files.pythonhosted.org/packages/97/1e/11eb0c4168beb8baea11433b4476f89f64640a51913f8c795b621d96e695/cvxpy-1.1.14-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67cf1589f121e797b0643d01f81c7fcb", "sha256": "61ffb222aac82e424c9af78905c119c155ee7c5cbf39ef95702f3348b4413581" }, "downloads": -1, "filename": "cvxpy-1.1.14-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "67cf1589f121e797b0643d01f81c7fcb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 872323, "upload_time": "2021-07-24T00:22:44", "upload_time_iso_8601": "2021-07-24T00:22:44.366051Z", "url": "https://files.pythonhosted.org/packages/d8/99/46826640bc6c67ab7c68e494c49495d4c31f19acd45ddbb5a4a60365dd92/cvxpy-1.1.14-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc8efaf4e3a733dbdfd82a992d870e13", "sha256": "f725cf67970921f05bf00dbc33149cdfbbccd48bd00e9329ddd1ea4c4b63dc10" }, "downloads": -1, "filename": "cvxpy-1.1.14-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "bc8efaf4e3a733dbdfd82a992d870e13", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 846612, "upload_time": "2021-07-24T00:25:36", "upload_time_iso_8601": "2021-07-24T00:25:36.490880Z", "url": "https://files.pythonhosted.org/packages/0d/36/f9fdc0df9ea0a7225db2dcbc6700827dc82029945e3e0a0582c59faa84ac/cvxpy-1.1.14-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fcc42d35fc26587d91867df29d5695f8", "sha256": "b3f60ca1d5cc73bf1191a394fdf1824b2b5b3f643aa8d76300a26e61de14c971" }, "downloads": -1, "filename": "cvxpy-1.1.14.tar.gz", "has_sig": false, "md5_digest": "fcc42d35fc26587d91867df29d5695f8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1286956, "upload_time": "2021-07-24T00:31:56", "upload_time_iso_8601": "2021-07-24T00:31:56.589562Z", "url": "https://files.pythonhosted.org/packages/41/f3/b8787e68f23638997bef8f4ed855fa17ae1ffcccf3d5956401a4dc83b1e5/cvxpy-1.1.14.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.15": [ { "comment_text": "", "digests": { "md5": "b9e479c41f4ae6ab337c7f3ca84c61a7", "sha256": "3c4ec6759962df7b7725071660a41b22702cbdfb798b30792f511c1142fe6905" }, "downloads": -1, "filename": "cvxpy-1.1.15-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b9e479c41f4ae6ab337c7f3ca84c61a7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 869199, "upload_time": "2021-08-13T00:41:35", "upload_time_iso_8601": "2021-08-13T00:41:35.458026Z", "url": "https://files.pythonhosted.org/packages/08/93/37e3af5799b045d5bbc0a985e9ffa46bd834554c915410cd17a432cc8ff0/cvxpy-1.1.15-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "943ab66c39843963619a759a57ab534a", "sha256": "21674fa60869f3a96ade5c7ed223d45a3857eed293812b9c2d3c0d81ad6548db" }, "downloads": -1, "filename": "cvxpy-1.1.15-cp36-cp36m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "943ab66c39843963619a759a57ab534a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2745702, "upload_time": "2021-08-13T00:28:27", "upload_time_iso_8601": "2021-08-13T00:28:27.802485Z", "url": "https://files.pythonhosted.org/packages/28/ab/9665191cdcc51d445568a042ee14341539826eb0ddddd2148030b7251e6b/cvxpy-1.1.15-cp36-cp36m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f81baafe0837a2b170b3dca486fe7e5a", "sha256": "b388c289e81e1fdaa28613fe3ae2abe9268f630bae7d58c80fe06f5cb4633b50" }, "downloads": -1, "filename": "cvxpy-1.1.15-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f81baafe0837a2b170b3dca486fe7e5a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 846810, "upload_time": "2021-08-13T00:29:49", "upload_time_iso_8601": "2021-08-13T00:29:49.998086Z", "url": "https://files.pythonhosted.org/packages/7b/1a/48a8fad5e845c5b1a8bb3c718ff5b2f08a7cc61cf7111cd9fd6865ce386e/cvxpy-1.1.15-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18695cd0f3de22c5fe163e35413145e7", "sha256": "d2f19f717a0d269e856c1d70d28b5a0ee95e629d44257cc97deddaa202e0a86d" }, "downloads": -1, "filename": "cvxpy-1.1.15-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "18695cd0f3de22c5fe163e35413145e7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 869165, "upload_time": "2021-08-13T00:43:45", "upload_time_iso_8601": "2021-08-13T00:43:45.603243Z", "url": "https://files.pythonhosted.org/packages/5a/c0/4ea68e026c7741d90bec97942f80e8fad69d0e95e68b79b8913acf31320f/cvxpy-1.1.15-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a573a232ae7461efe5257a180eaa91ce", "sha256": "69550bbd4c25ea22fc0954c0161fb869507579fa1473dc4b53392d9dd596364f" }, "downloads": -1, "filename": "cvxpy-1.1.15-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "a573a232ae7461efe5257a180eaa91ce", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2747142, "upload_time": "2021-08-13T00:29:47", "upload_time_iso_8601": "2021-08-13T00:29:47.390073Z", "url": "https://files.pythonhosted.org/packages/c9/8c/5859a6f39206d009bb33f76f0e8b383209c493e9e7b3609bde1a16d05600/cvxpy-1.1.15-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f78c2d43ccbc07fab12675980232e1a", "sha256": "a15c1f0278b6dc4d8a5450a0d49dccafb1d37133f361962cb1d48972b8bc2fdd" }, "downloads": -1, "filename": "cvxpy-1.1.15-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7f78c2d43ccbc07fab12675980232e1a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 846808, "upload_time": "2021-08-13T00:35:02", "upload_time_iso_8601": "2021-08-13T00:35:02.869981Z", "url": "https://files.pythonhosted.org/packages/60/53/557b9f9ab2351fa4cd4e7d6e2b6d69fddf2f1e5509172dfedc678c51ffa0/cvxpy-1.1.15-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b23decf243c648bfc5945d666602fcec", "sha256": "516be3def7839044a4682170063154eea57736eadffae7c9b51b768f6a98b7a5" }, "downloads": -1, "filename": "cvxpy-1.1.15-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b23decf243c648bfc5945d666602fcec", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 869978, "upload_time": "2021-08-13T00:44:36", "upload_time_iso_8601": "2021-08-13T00:44:36.493254Z", "url": "https://files.pythonhosted.org/packages/98/f1/0c2a054ede2e4f186ce5f5032f0f3c07ac286669d227b7f25e09e8d9620a/cvxpy-1.1.15-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae910be1c7667800109f0e5ad27068ff", "sha256": "31f081135ce173a4b4c6d82ad22291ed64f56917d76356ab59c62f50fb4843b1" }, "downloads": -1, "filename": "cvxpy-1.1.15-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "ae910be1c7667800109f0e5ad27068ff", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2739630, "upload_time": "2021-08-13T00:30:04", "upload_time_iso_8601": "2021-08-13T00:30:04.509521Z", "url": "https://files.pythonhosted.org/packages/63/32/dda692a56126dadfbcddfb231cc2667866e262ad0fd6ce4c58b3b3386fd1/cvxpy-1.1.15-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5889bfa201f51ceb33ee1c8ff8063b7b", "sha256": "b6218ab18b3cf04fd671359b0ca4f92fe10a4eb25c09ec36a2ba854193503204" }, "downloads": -1, "filename": "cvxpy-1.1.15-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "5889bfa201f51ceb33ee1c8ff8063b7b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 847469, "upload_time": "2021-08-13T00:36:13", "upload_time_iso_8601": "2021-08-13T00:36:13.846776Z", "url": "https://files.pythonhosted.org/packages/90/5a/3761a4ecfb748a7ed4de3403ef159ff2ef3b040d5d70e19722d87a87978e/cvxpy-1.1.15-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4e5ce8fffdc966e10d1594aeb5881c8", "sha256": "1d15a1c8663ec798b4a1bbf91552f8b96c270623a8ee56efd1843536f53efb5a" }, "downloads": -1, "filename": "cvxpy-1.1.15-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b4e5ce8fffdc966e10d1594aeb5881c8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 846444, "upload_time": "2021-08-13T00:31:41", "upload_time_iso_8601": "2021-08-13T00:31:41.979287Z", "url": "https://files.pythonhosted.org/packages/e9/8a/3759fe9deb5f6a390390d5b59391c73e807986fd1ca3bdead22fad75c924/cvxpy-1.1.15-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "354dc8193b6e4e75096ce31eb34c7c42", "sha256": "10d1d9287bbe58e05ed32879ed7ff8cfd1bb6f6def763c2d4576f1a1f7168575" }, "downloads": -1, "filename": "cvxpy-1.1.15-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "354dc8193b6e4e75096ce31eb34c7c42", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 874371, "upload_time": "2021-08-13T00:28:25", "upload_time_iso_8601": "2021-08-13T00:28:25.793162Z", "url": "https://files.pythonhosted.org/packages/a6/56/50de2e65181023f80584d1d3d21447244ab044dc7aff986aed52474ba974/cvxpy-1.1.15-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ee1dbfe573ff3b178787034dee45839", "sha256": "4fc61a6867cf82754f083b9c6ac8fd1faae49dae7d8bf30b90181fa01b442285" }, "downloads": -1, "filename": "cvxpy-1.1.15-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "8ee1dbfe573ff3b178787034dee45839", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 848284, "upload_time": "2021-08-13T00:37:29", "upload_time_iso_8601": "2021-08-13T00:37:29.078783Z", "url": "https://files.pythonhosted.org/packages/5e/61/891cdbeb36ab22dd7ff0f4fe688d48302ab362da50208234cfa777176c94/cvxpy-1.1.15-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5c2f69640b37131110b40c20cf6d5e9", "sha256": "a9a9ba6537dfbbbf090b3a0b73a185c509ace620dbcadbacc6981f728b3298a6" }, "downloads": -1, "filename": "cvxpy-1.1.15.tar.gz", "has_sig": false, "md5_digest": "b5c2f69640b37131110b40c20cf6d5e9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1288337, "upload_time": "2021-08-13T00:44:37", "upload_time_iso_8601": "2021-08-13T00:44:37.710680Z", "url": "https://files.pythonhosted.org/packages/94/b7/9d3e4713d5d330b171971067ba5b7f76d15d9f8fc3dce5dc0cefbe29f5fe/cvxpy-1.1.15.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.16": [ { "comment_text": "", "digests": { "md5": "89d0a4191b536d9baff39b8180cc970a", "sha256": "ea40c48489c595e8342adc372cf62dfee25c27cfd4228a770583ddb630c07c59" }, "downloads": -1, "filename": "cvxpy-1.1.16-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "89d0a4191b536d9baff39b8180cc970a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 873295, "upload_time": "2021-11-03T03:24:51", "upload_time_iso_8601": "2021-11-03T03:24:51.100744Z", "url": "https://files.pythonhosted.org/packages/94/8d/7a4125937605fad050d661d5b965e2cabe58b46f6978b14cba18f782557c/cvxpy-1.1.16-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d83017ef97b164cf97cfbc731fb0caea", "sha256": "16e5f394c6e59522fe37e9f397138dafdc41282ae43daecd79f06293d60fa299" }, "downloads": -1, "filename": "cvxpy-1.1.16-cp36-cp36m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "d83017ef97b164cf97cfbc731fb0caea", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2749729, "upload_time": "2021-11-03T03:22:53", "upload_time_iso_8601": "2021-11-03T03:22:53.090790Z", "url": "https://files.pythonhosted.org/packages/8f/a9/cc9955b6668c46924f43787842d8611dafdf6af2ba21fc4f85b909074c54/cvxpy-1.1.16-cp36-cp36m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4aebbba4ae24fb143154dad1ecb3bb46", "sha256": "1e5574b1f6b1c67233f1ddf80f42deb7f07c93cf3d033cf46abedc0cedf82eb5" }, "downloads": -1, "filename": "cvxpy-1.1.16-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4aebbba4ae24fb143154dad1ecb3bb46", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 850783, "upload_time": "2021-11-03T03:23:36", "upload_time_iso_8601": "2021-11-03T03:23:36.817583Z", "url": "https://files.pythonhosted.org/packages/60/e6/c3f88b4ba7a369edf232c20da42f0a6ba5fa35f032bb6b4a2bf18199a554/cvxpy-1.1.16-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e4271c9d7c412ae0221b6f1a030af9e", "sha256": "7ea2361f557f0e7bc75c50b76e2dbd721662d35ef7a1ef3705d0e39a3d0b0b2b" }, "downloads": -1, "filename": "cvxpy-1.1.16-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3e4271c9d7c412ae0221b6f1a030af9e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 873261, "upload_time": "2021-11-03T03:25:27", "upload_time_iso_8601": "2021-11-03T03:25:27.114953Z", "url": "https://files.pythonhosted.org/packages/39/13/863c6d2e382b0107e4dc803a7cf3590e1e5790a5ee4697b56d61c86a7ddb/cvxpy-1.1.16-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7aaafd5ece6b157eebea974ebcc1b2e0", "sha256": "d75cab9201ee5612be457d00a31c52a50647733f822dba6b1f3ef543134d6e07" }, "downloads": -1, "filename": "cvxpy-1.1.16-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "7aaafd5ece6b157eebea974ebcc1b2e0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2751170, "upload_time": "2021-11-03T03:22:09", "upload_time_iso_8601": "2021-11-03T03:22:09.148719Z", "url": "https://files.pythonhosted.org/packages/80/55/dff31e2a2cabc14b13b4abf43f3d8b02610b47031ba5e2dd351f8b49fa6c/cvxpy-1.1.16-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c46d43ee46b1ea13b50bb956cbf8bfb", "sha256": "68e40f2543948d6992d1cac8b0a7cd83627a80d914d2d7f91aafd4328b7bbdf5" }, "downloads": -1, "filename": "cvxpy-1.1.16-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2c46d43ee46b1ea13b50bb956cbf8bfb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 850789, "upload_time": "2021-11-03T03:22:03", "upload_time_iso_8601": "2021-11-03T03:22:03.395773Z", "url": "https://files.pythonhosted.org/packages/2a/4c/599c12d7d4c1eb30bfb6a45c031db288b78d4987fd36b4c2bc701e01e74a/cvxpy-1.1.16-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94b24d316ba2d43b6b9503ea8b3f7583", "sha256": "5c2d0ea322817daafb11ebb70e350c804ce4a89e431f8c437c729fc233acc18d" }, "downloads": -1, "filename": "cvxpy-1.1.16-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "94b24d316ba2d43b6b9503ea8b3f7583", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 874076, "upload_time": "2021-11-03T03:31:38", "upload_time_iso_8601": "2021-11-03T03:31:38.998666Z", "url": "https://files.pythonhosted.org/packages/50/f8/c6c4c2d306aa7896eb78ec4aa76080e386073f5057031f2ef63d6a19a0e8/cvxpy-1.1.16-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7bcb0a3e4a0b5c36edef09aab052655", "sha256": "24fa045b4dd26fa958930fce667478f54b90d1da3951f548d053f8ed82b73528" }, "downloads": -1, "filename": "cvxpy-1.1.16-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "a7bcb0a3e4a0b5c36edef09aab052655", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2743668, "upload_time": "2021-11-03T03:26:28", "upload_time_iso_8601": "2021-11-03T03:26:28.447320Z", "url": "https://files.pythonhosted.org/packages/90/8c/ba25845b3a76517223a5d2b8f995f1510cf822c4a2cc9be5dc335ed22045/cvxpy-1.1.16-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8821ad6dcb0baca595f8f34ff519d635", "sha256": "2ad12b08817da9a8ce8e44b190219a4c3436846339ddfcf16ec9c34135a86f8a" }, "downloads": -1, "filename": "cvxpy-1.1.16-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "8821ad6dcb0baca595f8f34ff519d635", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 851370, "upload_time": "2021-11-03T03:25:10", "upload_time_iso_8601": "2021-11-03T03:25:10.246072Z", "url": "https://files.pythonhosted.org/packages/ce/d3/5d164af22fedfd612e63802ffa7d2ae570da95660639546c2cf3fae326b0/cvxpy-1.1.16-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "014015e6255e1d0e1dbf21fb64351a51", "sha256": "3962388febcff8043bc11d819d547563a965a66a4e2171bfdb7d9e33ef250469" }, "downloads": -1, "filename": "cvxpy-1.1.16-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "014015e6255e1d0e1dbf21fb64351a51", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 851217, "upload_time": "2021-11-03T15:34:15", "upload_time_iso_8601": "2021-11-03T15:34:15.052888Z", "url": "https://files.pythonhosted.org/packages/52/2b/871043945289c27738671bad0c8bcd561cd0202bf5a297b3b774c6dd6dff/cvxpy-1.1.16-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e397570a1c5d44deb36dd6b9190d47c9", "sha256": "bbc24838afc58c0defea67dec9a7e99a54903790d1ccce84129d736a057e197f" }, "downloads": -1, "filename": "cvxpy-1.1.16-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "e397570a1c5d44deb36dd6b9190d47c9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 879094, "upload_time": "2021-11-03T15:26:15", "upload_time_iso_8601": "2021-11-03T15:26:15.685107Z", "url": "https://files.pythonhosted.org/packages/91/5a/d0ef8815f139ba7a22b8833e0802696362b2960c30dd403448a9bc238261/cvxpy-1.1.16-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a43845167ad562f99c20f2f64d1cb8f0", "sha256": "bdd25d5dbe9f10be96daece1cf8a1f9269c81352bea56def06f88ec31778babd" }, "downloads": -1, "filename": "cvxpy-1.1.16-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "a43845167ad562f99c20f2f64d1cb8f0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 852930, "upload_time": "2021-11-03T15:27:51", "upload_time_iso_8601": "2021-11-03T15:27:51.977322Z", "url": "https://files.pythonhosted.org/packages/03/30/e325fe683625ca457d5137cc9b171fef088613a218f106a7f54a709ad8ec/cvxpy-1.1.16-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1095750f9ce1579177022616dfdc2f83", "sha256": "046374d930f9559494588994ee86a6e92da6271c3edb24893a06b24e320c95ec" }, "downloads": -1, "filename": "cvxpy-1.1.16.tar.gz", "has_sig": false, "md5_digest": "1095750f9ce1579177022616dfdc2f83", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1290658, "upload_time": "2021-11-03T03:31:40", "upload_time_iso_8601": "2021-11-03T03:31:40.898170Z", "url": "https://files.pythonhosted.org/packages/0c/dc/1725e70afdc61a39e27d38611e19c88f10b476a7daad742c30f95ffc5b79/cvxpy-1.1.16.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.17": [ { "comment_text": "", "digests": { "md5": "a8e88e56365f512f9b0a8a23c5c3b86d", "sha256": "f612f2a07550eaf286dc79ddbafde74504d10e218d5efab0e8e4c022b97d90b5" }, "downloads": -1, "filename": "cvxpy-1.1.17-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a8e88e56365f512f9b0a8a23c5c3b86d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 873972, "upload_time": "2021-11-03T17:14:13", "upload_time_iso_8601": "2021-11-03T17:14:13.620348Z", "url": "https://files.pythonhosted.org/packages/4b/da/7e846aed65c80c1bd5ac7661f24141758b4f6c67cf5debcecffe67e21e6f/cvxpy-1.1.17-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f090074011e13dc03ce9a804057a3fb4", "sha256": "8af6aaae658471f05856555847363e68140169f164c5b0b184e85bc296b69a20" }, "downloads": -1, "filename": "cvxpy-1.1.17-cp36-cp36m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "f090074011e13dc03ce9a804057a3fb4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2750421, "upload_time": "2021-11-03T17:08:23", "upload_time_iso_8601": "2021-11-03T17:08:23.396184Z", "url": "https://files.pythonhosted.org/packages/68/eb/182998213bcf951045aa7ef1a0f56c112e00c73f73f4805429f49d156819/cvxpy-1.1.17-cp36-cp36m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f43c8223a5eefc91004217c769091ae", "sha256": "4fec0b03c2b995d6191b9176f51b1f1fdd057c89d5b5ca12ef4263ad19214a03" }, "downloads": -1, "filename": "cvxpy-1.1.17-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4f43c8223a5eefc91004217c769091ae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 851465, "upload_time": "2021-11-03T17:10:30", "upload_time_iso_8601": "2021-11-03T17:10:30.765040Z", "url": "https://files.pythonhosted.org/packages/f3/f6/893cdd0c63a34048afd608f3ae5211926d74fccb38565982308d235d96ba/cvxpy-1.1.17-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44ae442aaf581138ff982101a508fc0f", "sha256": "6ae101311b28a9e7c501ff6aefb03c588d5cce6803865b6df1bfbd80b969f9f8" }, "downloads": -1, "filename": "cvxpy-1.1.17-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "44ae442aaf581138ff982101a508fc0f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 873939, "upload_time": "2021-11-03T17:13:06", "upload_time_iso_8601": "2021-11-03T17:13:06.259714Z", "url": "https://files.pythonhosted.org/packages/40/56/769b2b674f39f7482d9d118893a613f2edd278655434bfa9a71835780325/cvxpy-1.1.17-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b8c5553d66e78b36ed8166941c6c3db", "sha256": "5d217c25e970c2f2a55ee607822823e91aaa07522913f7c61c7f9d4d0d1de885" }, "downloads": -1, "filename": "cvxpy-1.1.17-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "0b8c5553d66e78b36ed8166941c6c3db", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2751864, "upload_time": "2021-11-03T17:08:30", "upload_time_iso_8601": "2021-11-03T17:08:30.132947Z", "url": "https://files.pythonhosted.org/packages/b7/a7/815c2ae5a7f66c7c307e3dd74917c55023e7e657746f4fbef4d90a1a2b8b/cvxpy-1.1.17-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91306e57b47b38e645ead42966d72ad4", "sha256": "8269bf471f5e015cec6289dfad64e5f7c50e7f35d2d0823490a4c3ea278f1a20" }, "downloads": -1, "filename": "cvxpy-1.1.17-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "91306e57b47b38e645ead42966d72ad4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 851468, "upload_time": "2021-11-03T17:10:24", "upload_time_iso_8601": "2021-11-03T17:10:24.103704Z", "url": "https://files.pythonhosted.org/packages/dd/15/8da56e3b5d9df384380c56f98917b276fe6db817d60da9abdcd941428470/cvxpy-1.1.17-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2bf38b169a8829765b6a74adf37a597e", "sha256": "1fa6768bcefe4b5c8e413e20547f914b8e3c908f06fc833a003dde0ea1aeb56d" }, "downloads": -1, "filename": "cvxpy-1.1.17-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2bf38b169a8829765b6a74adf37a597e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 874752, "upload_time": "2021-11-03T17:15:11", "upload_time_iso_8601": "2021-11-03T17:15:11.412223Z", "url": "https://files.pythonhosted.org/packages/39/d8/baf887f9be8b70725a282e6f35526836746dae16ea65c939c95e53d24f90/cvxpy-1.1.17-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05e0381f976c26e1c3d5bcef6ee3415c", "sha256": "472c1fb6568a7bedc874f10b234d569cd16290fb9467dc2768d06dfa1c2dbc7f" }, "downloads": -1, "filename": "cvxpy-1.1.17-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "05e0381f976c26e1c3d5bcef6ee3415c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2744356, "upload_time": "2021-11-03T17:11:58", "upload_time_iso_8601": "2021-11-03T17:11:58.737663Z", "url": "https://files.pythonhosted.org/packages/b4/0b/9430cfb719dcee9734c1f8db7a72fedaa378d0cfa368f7be6a18a90f35ea/cvxpy-1.1.17-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef4693547a0b2b3d1ecf834de3dedabc", "sha256": "c0f23c57c4afe9ab5afa9bf408d8b0c8ffc3c8c57d54e81ab56b7dfe0bf9c34b" }, "downloads": -1, "filename": "cvxpy-1.1.17-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ef4693547a0b2b3d1ecf834de3dedabc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 852048, "upload_time": "2021-11-03T17:12:22", "upload_time_iso_8601": "2021-11-03T17:12:22.601621Z", "url": "https://files.pythonhosted.org/packages/75/40/701037e368cab35cd3732503a80ffc7253eea8a06fca5175b75d90d44806/cvxpy-1.1.17-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2816b7ca68520ba7597fecc3bb906a63", "sha256": "06136af30d1ea605ca8093a8664edc8f963155a8765214a430973259450b489e" }, "downloads": -1, "filename": "cvxpy-1.1.17-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2816b7ca68520ba7597fecc3bb906a63", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 851218, "upload_time": "2021-11-03T17:12:01", "upload_time_iso_8601": "2021-11-03T17:12:01.868819Z", "url": "https://files.pythonhosted.org/packages/f9/d4/a2b526e8ba2636f73f9db64f1a4fc247201e53b18bdc233b02f2c2d65128/cvxpy-1.1.17-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58700b883af7f845ed52416f8680d2f8", "sha256": "ea4381c55dd4f7c0a140a59dfa777c7bb09d6fa513d14a7f5381948d1540b966" }, "downloads": -1, "filename": "cvxpy-1.1.17-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "58700b883af7f845ed52416f8680d2f8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 879098, "upload_time": "2021-11-03T17:09:26", "upload_time_iso_8601": "2021-11-03T17:09:26.468247Z", "url": "https://files.pythonhosted.org/packages/40/5e/15b31213ad9e8498296ded08fc004bc25a6cee6b0a559d4367a4b1ca80aa/cvxpy-1.1.17-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03394e8c60c98ee86effb353e0f7be25", "sha256": "cdd9cfb864bcae5233a52fa4060bbeb7c81b29a23d82acafa071e372b23f6f0b" }, "downloads": -1, "filename": "cvxpy-1.1.17-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "03394e8c60c98ee86effb353e0f7be25", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 852929, "upload_time": "2021-11-03T17:11:33", "upload_time_iso_8601": "2021-11-03T17:11:33.160555Z", "url": "https://files.pythonhosted.org/packages/96/14/7ea91a65aa22129ff6860e996953f8d40147cac8b7c8dd6a2a7e3343d9a5/cvxpy-1.1.17-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "feaea8e2409462f15633c720ac4810bf", "sha256": "3397d3b89d770ea9f0fc359b1c9b3afede6a0d3bea1cff20e2653b13451cdb8a" }, "downloads": -1, "filename": "cvxpy-1.1.17.tar.gz", "has_sig": false, "md5_digest": "feaea8e2409462f15633c720ac4810bf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1291273, "upload_time": "2021-11-03T17:15:12", "upload_time_iso_8601": "2021-11-03T17:15:12.971395Z", "url": "https://files.pythonhosted.org/packages/a4/60/9a6fa05a991bb5825080635572c512776b95a7a6a73d157bda34d559ab33/cvxpy-1.1.17.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.18": [ { "comment_text": "", "digests": { "md5": "d4fd180c7152ed3882aace0835d16b02", "sha256": "80018d9a4478253cc27d6d87677c4ba35908bf52e71a94e4beba5639c39f283d" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d4fd180c7152ed3882aace0835d16b02", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 849126, "upload_time": "2021-12-28T18:42:43", "upload_time_iso_8601": "2021-12-28T18:42:43.782846Z", "url": "https://files.pythonhosted.org/packages/2e/62/ca9ae8c8bf536c784872fd3a2f8c2265d2972df7332664f0ac6dcf5dad7a/cvxpy-1.1.18-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5c9e6141a72e41cde45e7c9dc08d939", "sha256": "d3c35f47032ba15af0ae5b7d4b44ed8dd287e27101f1a264295dd4885f8aea70" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp310-cp310-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "d5c9e6141a72e41cde45e7c9dc08d939", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2716628, "upload_time": "2021-12-28T18:30:22", "upload_time_iso_8601": "2021-12-28T18:30:22.821501Z", "url": "https://files.pythonhosted.org/packages/f7/92/823091be34ca6c124dab716efbd94570c2052a3dd315b7d71803590bf450/cvxpy-1.1.18-cp310-cp310-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c6c6900c21f87b02252f5540a77084d", "sha256": "20b9f214f092ff5dec8e8b56ddb365690d8e02f6bd005ee9b59367150e3efd05" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "1c6c6900c21f87b02252f5540a77084d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 803024, "upload_time": "2021-12-28T18:33:16", "upload_time_iso_8601": "2021-12-28T18:33:16.334226Z", "url": "https://files.pythonhosted.org/packages/bb/3b/47cb02b4db7e4f65c543e5b84e06a1c17672cd080958cbc9d8a78246288b/cvxpy-1.1.18-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2420baf72be80fcc9071a57e30fd4fd9", "sha256": "d853b73aca9223901b1de4dcd8c71d9732e7d38e915008956aa13fa2920d2652" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2420baf72be80fcc9071a57e30fd4fd9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 847336, "upload_time": "2021-12-28T18:38:35", "upload_time_iso_8601": "2021-12-28T18:38:35.114535Z", "url": "https://files.pythonhosted.org/packages/e9/b6/44c5d30730199b882f37fd99a4f3d2806e179ed9bc486886ce5f3b3b35f9/cvxpy-1.1.18-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6cf2d816d2117ac26d1a0a6c56bc6ab8", "sha256": "254683742bcd4427eaa17ca44675b540690e043782d467c4c68d1d4ef003c062" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp36-cp36m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "6cf2d816d2117ac26d1a0a6c56bc6ab8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2718142, "upload_time": "2021-12-28T18:30:12", "upload_time_iso_8601": "2021-12-28T18:30:12.299282Z", "url": "https://files.pythonhosted.org/packages/b9/4f/26257cddaad95ce14015684f8a51aee7ee85bec6d08057868221fb4bc543/cvxpy-1.1.18-cp36-cp36m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50117ac3cdddfd10970e4c6fdd393ea0", "sha256": "6d2dd80550b9ab5f36a3961c64b51d70f364bd375565400534af65b5cf590787" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "50117ac3cdddfd10970e4c6fdd393ea0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 824459, "upload_time": "2021-12-28T18:33:16", "upload_time_iso_8601": "2021-12-28T18:33:16.146725Z", "url": "https://files.pythonhosted.org/packages/51/6b/04735db94c976e51bb3ab05038afcd919cd6d6ecf19f6c543fd9f49d705d/cvxpy-1.1.18-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c23ffd31f8a935d61068cd3f9b4cf556", "sha256": "e634c5afa8d4c7db9691d2fb9f982fcf9be41bf3fb8c781e47816fa290acbdbb" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c23ffd31f8a935d61068cd3f9b4cf556", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 848859, "upload_time": "2021-12-28T18:41:11", "upload_time_iso_8601": "2021-12-28T18:41:11.786181Z", "url": "https://files.pythonhosted.org/packages/77/e9/29207c6b299542a678ea042222690a502d40a6ab31ce396ca0a0c0cbff8f/cvxpy-1.1.18-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4cef5c16f441cf717d9d6593ee0a39e", "sha256": "d84fb6de19c998a4db8e442d2d5d5c155b983ca4f1833fd79fb6ad47c092f349" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "a4cef5c16f441cf717d9d6593ee0a39e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2732847, "upload_time": "2021-12-28T18:30:18", "upload_time_iso_8601": "2021-12-28T18:30:18.879682Z", "url": "https://files.pythonhosted.org/packages/5f/f9/a13bb9920c15adce232733e135fcfd32b0875fa7a32ed43b001482bbb029/cvxpy-1.1.18-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e819aba2a991d1de5b18bbe350a0da81", "sha256": "d21d81ab76f6fae44090c19b9a802e42e8af440d9a505be892c1e6766621e4a6" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "e819aba2a991d1de5b18bbe350a0da81", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 799059, "upload_time": "2021-12-28T18:33:21", "upload_time_iso_8601": "2021-12-28T18:33:21.726638Z", "url": "https://files.pythonhosted.org/packages/52/78/6ed700198339bf566c59a7675d4371981cd06d95a8f21bc3547ba82cffbf/cvxpy-1.1.18-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f975326b8313c7201d7c96fa900580a8", "sha256": "ec5371c339cd35cb47fc8e9f7e6dff22e20612fdfa6b17dc508fc513130337ba" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f975326b8313c7201d7c96fa900580a8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 849611, "upload_time": "2021-12-28T18:42:17", "upload_time_iso_8601": "2021-12-28T18:42:17.504635Z", "url": "https://files.pythonhosted.org/packages/f6/95/91a73225c86c59af0b1310f2c871b9f42b9dcc58eedc91926baffdc27b60/cvxpy-1.1.18-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c334bc2b90407f6cef86bdcb577db24d", "sha256": "2699db1cc889fd2e0ea459f022866fcc1182241f4520c5550ca5136ef06c5246" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "c334bc2b90407f6cef86bdcb577db24d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2721008, "upload_time": "2021-12-28T18:32:26", "upload_time_iso_8601": "2021-12-28T18:32:26.682758Z", "url": "https://files.pythonhosted.org/packages/f3/3b/96a7593d11a9b11b9152079034cbc01fa272fb30942d3c750fe3ad51259c/cvxpy-1.1.18-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e8c8ea7aec4e132997750f6f0b7ddc6", "sha256": "022c8d9c82d2f00535e1d08761e88aa5c1729ee685dfb2ea60465693f54550c1" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "0e8c8ea7aec4e132997750f6f0b7ddc6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 799091, "upload_time": "2021-12-28T18:35:33", "upload_time_iso_8601": "2021-12-28T18:35:33.282585Z", "url": "https://files.pythonhosted.org/packages/24/88/e4df0148170b3b6992b21617785ec79e6d968bb8703b5c96b595a8f5fe5d/cvxpy-1.1.18-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "747eac8ff28adc730fc8394972fdfc66", "sha256": "9f82ca609e34577062940d5c32bc1f687fcf83d39ca92ec0d04fb1f290b43355" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "747eac8ff28adc730fc8394972fdfc66", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 849113, "upload_time": "2021-12-28T18:42:18", "upload_time_iso_8601": "2021-12-28T18:42:18.207611Z", "url": "https://files.pythonhosted.org/packages/7c/f3/1e7444b19e1ee50d459fe0f522f61dc5c9ee0a0549c5c7c8bbfd210efe68/cvxpy-1.1.18-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "faeaf2cdc09cf082bf3ab6daead663a8", "sha256": "569f7298539a2bd8704209628af11ecf1bca0cff2d5e27c46b57ffea921a01cf" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "faeaf2cdc09cf082bf3ab6daead663a8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2716447, "upload_time": "2021-12-28T18:30:25", "upload_time_iso_8601": "2021-12-28T18:30:25.366813Z", "url": "https://files.pythonhosted.org/packages/96/16/d8811b5d4ddb5df6250fbc6aa9392e3ff645a044be4de829767564d2e5de/cvxpy-1.1.18-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a930b5fecc83360f96c1eea9e8946eb9", "sha256": "2eb079877d23f03494141102d6cf9d3139edf5e1dc07bfa3f767f4c79e837ecb" }, "downloads": -1, "filename": "cvxpy-1.1.18-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "a930b5fecc83360f96c1eea9e8946eb9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 803024, "upload_time": "2021-12-28T18:33:21", "upload_time_iso_8601": "2021-12-28T18:33:21.869165Z", "url": "https://files.pythonhosted.org/packages/b6/82/2bfa46ba75c7dc96921e859b976a0977e758fc32725591e187566794a827/cvxpy-1.1.18-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68468af9c5abc51f0f095c455766489d", "sha256": "5baefe1f2ed6937749b293586c6ce4f42ed30e7890223f7661ccb2bb7df70bef" }, "downloads": -1, "filename": "cvxpy-1.1.18.tar.gz", "has_sig": false, "md5_digest": "68468af9c5abc51f0f095c455766489d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1264962, "upload_time": "2021-12-29T21:19:54", "upload_time_iso_8601": "2021-12-29T21:19:54.421042Z", "url": "https://files.pythonhosted.org/packages/d1/a3/70847cbcf06dc3b980653ce38c1064a1a115d944dd3e5ceaf3a622f034a4/cvxpy-1.1.18.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.19": [ { "comment_text": "", "digests": { "md5": "3040200d785a57d4a9978813f7ad5bea", "sha256": "f8be41f9b27f7c4e413a187fbd61ca05cfb77f310e5fabb5048919404518a6d7" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3040200d785a57d4a9978813f7ad5bea", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 857971, "upload_time": "2022-03-09T02:25:02", "upload_time_iso_8601": "2022-03-09T02:25:02.925652Z", "url": "https://files.pythonhosted.org/packages/0e/0a/b0a8bf3f6f61c2519980b67ea4eeb8f98e9950bd20c028cc9ebc10d0f91c/cvxpy-1.1.19-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68b563b56e0fda0182d644216d1878d2", "sha256": "c7e5e75dfeec84b5b8ba46e0641c8642544dd260c724bbe60fac51481df1b290" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp310-cp310-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "68b563b56e0fda0182d644216d1878d2", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2733936, "upload_time": "2022-03-09T02:10:05", "upload_time_iso_8601": "2022-03-09T02:10:05.343395Z", "url": "https://files.pythonhosted.org/packages/5d/e6/1867bda2bdbbe447dfe45282716a848e12f4696608f8185a1afbba9cce90/cvxpy-1.1.19-cp310-cp310-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca189770e8c1e8b2c910cf2cff1578ce", "sha256": "b6502b58505c73b96404bf3df831fffae0c9070e2468c2cc73ea6d8cc1968db5" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "ca189770e8c1e8b2c910cf2cff1578ce", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 811801, "upload_time": "2022-03-09T02:12:16", "upload_time_iso_8601": "2022-03-09T02:12:16.075814Z", "url": "https://files.pythonhosted.org/packages/d5/01/d53095a98c9cf3e83c0e67ce98a0cc79acc48a3f590649d799a3bd6dd7cd/cvxpy-1.1.19-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b44bdfcc62de72fbdc84c354c7e5db6", "sha256": "1c6638c9bacc9d3ad1dd68d7555ea68e5471c82a08f866ee7c9d83d49abd774a" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4b44bdfcc62de72fbdc84c354c7e5db6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 855576, "upload_time": "2022-03-09T02:25:17", "upload_time_iso_8601": "2022-03-09T02:25:17.760323Z", "url": "https://files.pythonhosted.org/packages/f4/87/46c36bb484f6ca85b5307f00011fd31107fd4158e5fb9a7b60138e98c488/cvxpy-1.1.19-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b39b1e6347ac7c5542f9eb1e4444343a", "sha256": "b2745096254dcea9fac721329ab6eadf5a85e6a91510b39369b07acb9275b4d4" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp36-cp36m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "b39b1e6347ac7c5542f9eb1e4444343a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2736305, "upload_time": "2022-03-09T02:10:19", "upload_time_iso_8601": "2022-03-09T02:10:19.303371Z", "url": "https://files.pythonhosted.org/packages/5d/f3/de5c13a6e8e1c32779ac950e1d03f1fdc95afe1f89f6870f74f23bdd42c1/cvxpy-1.1.19-cp36-cp36m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "890cab3361e35ea9c059cbd1a2aa595f", "sha256": "feb71e71df3573975ed2788030b2b47c1e81af6b074530f782a6adbe8467c794" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "890cab3361e35ea9c059cbd1a2aa595f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 833106, "upload_time": "2022-03-09T02:14:17", "upload_time_iso_8601": "2022-03-09T02:14:17.767880Z", "url": "https://files.pythonhosted.org/packages/e7/da/0dae4170e6467b408c87fb78114f61073dac2318296a4c1bbb93d96de8fe/cvxpy-1.1.19-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc62793a8ebf003f5365d4cdfcff1681", "sha256": "d2656ac5e85f8c8b0579681a6d31aff183b1101f2675e0d78dd09522ac5f20eb" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fc62793a8ebf003f5365d4cdfcff1681", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 857447, "upload_time": "2022-03-09T02:29:30", "upload_time_iso_8601": "2022-03-09T02:29:30.676071Z", "url": "https://files.pythonhosted.org/packages/a3/8b/4e338a4b988a335f779cb12def69b8220af3753c983270c1b2f51a4dce15/cvxpy-1.1.19-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d01692be481905b152cc040b919bc07", "sha256": "bdb3af07834da320216183580b913a5f0e8a9f8244debfeb0f7e4a37e22f462d" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "9d01692be481905b152cc040b919bc07", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2753080, "upload_time": "2022-03-09T02:11:12", "upload_time_iso_8601": "2022-03-09T02:11:12.200634Z", "url": "https://files.pythonhosted.org/packages/f5/a3/01df3d51c737eda1f6a546be7eed52a8d5093d3e5fccb5f11ce751591de2/cvxpy-1.1.19-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfa15c082b945048364d41e95c18ffb5", "sha256": "ee4fb0c1f9472a59704212a4f50e1aea71128482aac4fbfff5a53964699d48d1" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "dfa15c082b945048364d41e95c18ffb5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 807847, "upload_time": "2022-03-09T02:13:06", "upload_time_iso_8601": "2022-03-09T02:13:06.550255Z", "url": "https://files.pythonhosted.org/packages/94/a7/67c2784694a841e70f1a9248071b59624fb564be60ea6875e46d0434c716/cvxpy-1.1.19-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62ec574c958ae6542107691b504c1a30", "sha256": "88ea43e9b8a0144764e4d2d91c7d52c0a71fc3ee72d3aa46da7c2a454b2f0b9b" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "62ec574c958ae6542107691b504c1a30", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 858339, "upload_time": "2022-03-09T02:29:43", "upload_time_iso_8601": "2022-03-09T02:29:43.082343Z", "url": "https://files.pythonhosted.org/packages/f1/90/3768ab9281f1d3a765809d4a59201fd9a3808f50fd02dbef890518a36cb5/cvxpy-1.1.19-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b1e1ff9bbdacc62f0989f43e85f997f", "sha256": "6e3310529c8febdb39891a432fbbb60151910c089e785de196404040bfa177d3" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "1b1e1ff9bbdacc62f0989f43e85f997f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2738163, "upload_time": "2022-03-09T02:12:35", "upload_time_iso_8601": "2022-03-09T02:12:35.782859Z", "url": "https://files.pythonhosted.org/packages/2e/30/048914e2460c6b4c5013831266851ebff8071a405554fd8948f8cddda39a/cvxpy-1.1.19-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e428a286c4df84475e117bfaa1e22eee", "sha256": "d4300510f8ed13f381c6713a6006fd3fbf959039d97cf517bbf8da87914675b9" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "e428a286c4df84475e117bfaa1e22eee", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 808019, "upload_time": "2022-03-09T02:16:39", "upload_time_iso_8601": "2022-03-09T02:16:39.846936Z", "url": "https://files.pythonhosted.org/packages/3d/ce/51164faeadd58f67551e2c0a0f7428e1f68c5c44df38cf4c8c157eeea6ce/cvxpy-1.1.19-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b18324b20e7f16d1f341d960405fb907", "sha256": "51b4c52658f3ea93d0d0dde28b35508e15a17b03bb1a0fce354f03265d77fcb3" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b18324b20e7f16d1f341d960405fb907", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 857994, "upload_time": "2022-03-09T02:33:17", "upload_time_iso_8601": "2022-03-09T02:33:17.185913Z", "url": "https://files.pythonhosted.org/packages/4b/ce/e45afedca56d7cd39228b8a566e75399224c6b2fbd9bad1eb288f81b308e/cvxpy-1.1.19-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3666f51c5ec1b7ed6db4d02421a32c7d", "sha256": "898bab11e8624c08cb0ac06c2fec71e3da65b654f5582655821b57291d8f0b5d" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "3666f51c5ec1b7ed6db4d02421a32c7d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2734286, "upload_time": "2022-03-09T02:11:03", "upload_time_iso_8601": "2022-03-09T02:11:03.680896Z", "url": "https://files.pythonhosted.org/packages/87/bc/44023074ca037102cd6f33780f4da7c52e701f3bc9c47b7c7568f23af27c/cvxpy-1.1.19-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee66860c89d9a6a0c920a9260c07ce2b", "sha256": "9b15d7138817d8a0bca8395befd623515722dffe59c345797adc730e49cbeed4" }, "downloads": -1, "filename": "cvxpy-1.1.19-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "ee66860c89d9a6a0c920a9260c07ce2b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 811859, "upload_time": "2022-03-09T02:14:25", "upload_time_iso_8601": "2022-03-09T02:14:25.508230Z", "url": "https://files.pythonhosted.org/packages/a0/ce/cf761548a49a013b4bf92dbeb08d62afc83e02826eb281b61e6d7476a87d/cvxpy-1.1.19-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "d8df2e52be9204dfc7b223063f8c1498", "sha256": "20b2668c137c74236cf8093a249c221e250426a5a701674d67caf39930e7b893" }, "downloads": -1, "filename": "cvxpy-1.1.2-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "d8df2e52be9204dfc7b223063f8c1498", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 814865, "upload_time": "2020-07-14T18:44:03", "upload_time_iso_8601": "2020-07-14T18:44:03.655773Z", "url": "https://files.pythonhosted.org/packages/d3/10/eebbce2cf68803ad7023551ca0b9f225cbc3b32901a19d7b45b259bca20c/cvxpy-1.1.2-cp35-cp35m-macosx_10_6_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4638433a4d159e33abb2538aea9deec6", "sha256": "33406182ec6114d2664963d3389eb9fb8517cc8a26ac361672d0781d3d866728" }, "downloads": -1, "filename": "cvxpy-1.1.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4638433a4d159e33abb2538aea9deec6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 766268, "upload_time": "2020-07-14T18:38:13", "upload_time_iso_8601": "2020-07-14T18:38:13.090820Z", "url": "https://files.pythonhosted.org/packages/8a/a6/e5c78744fbe6ca9e803f9fc3ed57a57566509815430564e85d55a757f8df/cvxpy-1.1.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d658952864fd46d9388d26059b89994e", "sha256": "7dcacb904321bc01d665b71dad990a00946ccb0a5712877cc1fe17cc65ff0c52" }, "downloads": -1, "filename": "cvxpy-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d658952864fd46d9388d26059b89994e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 818974, "upload_time": "2020-07-14T18:48:01", "upload_time_iso_8601": "2020-07-14T18:48:01.333774Z", "url": "https://files.pythonhosted.org/packages/b0/e5/cf6bfbecaf7feb91b3bad396b046953f056811d7293071571af209838c74/cvxpy-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba8f8c0148f21938b3a5a24e66767463", "sha256": "667dcf4f6c6f826ce3ff53cbca7ac9b278fd1143e79f6bae6dae537f0c7481a1" }, "downloads": -1, "filename": "cvxpy-1.1.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ba8f8c0148f21938b3a5a24e66767463", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 766276, "upload_time": "2020-07-14T18:49:06", "upload_time_iso_8601": "2020-07-14T18:49:06.821511Z", "url": "https://files.pythonhosted.org/packages/e9/6d/1deb52420a40fdd7b03925d663f4f244996a81df7b20d7b3fe6ae8f61af1/cvxpy-1.1.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91225c7a026421022b308c429d13a802", "sha256": "2740892b9077c9f7d0844716b1486371023b753b1892583f510f1a13a49d2e39" }, "downloads": -1, "filename": "cvxpy-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "91225c7a026421022b308c429d13a802", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 818973, "upload_time": "2020-07-14T19:02:29", "upload_time_iso_8601": "2020-07-14T19:02:29.042779Z", "url": "https://files.pythonhosted.org/packages/12/d8/bdf670b698fde31d626382bc131e62c2898cdbd62b7e0baf9fbc2562c272/cvxpy-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14c82b51062ff60d77c19dae47002888", "sha256": "918041eed9a85e86b4130439c081a14a98f46e14ca033e119929abaaeb72f20a" }, "downloads": -1, "filename": "cvxpy-1.1.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "14c82b51062ff60d77c19dae47002888", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 766277, "upload_time": "2020-07-14T19:00:05", "upload_time_iso_8601": "2020-07-14T19:00:05.782979Z", "url": "https://files.pythonhosted.org/packages/1b/d6/c946a18090113af7d9fcc93bc153f6c705ac74164046d3571c1ac65ad157/cvxpy-1.1.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7571e043ae317cd6906470b0e267b64f", "sha256": "9b6d08aa871ae11521431c00f9656a7b0ddf256d587988b80cd896d32badbb19" }, "downloads": -1, "filename": "cvxpy-1.1.2-py3.5-win-amd64.egg", "has_sig": false, "md5_digest": "7571e043ae317cd6906470b0e267b64f", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": ">=3.5", "size": 1572892, "upload_time": "2020-07-14T18:38:14", "upload_time_iso_8601": "2020-07-14T18:38:14.404083Z", "url": "https://files.pythonhosted.org/packages/88/d9/d110d704be095fa06c7eae9f6a52f02aba162023d9b45d765a9482be11dc/cvxpy-1.1.2-py3.5-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6872b264649ef4bf6c142c65bac4cca", "sha256": "e71a36f092dfe6d640d34be33ae936ec049426284e1a77ac4300fa172d0b1d69" }, "downloads": -1, "filename": "cvxpy-1.1.2-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "b6872b264649ef4bf6c142c65bac4cca", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1552673, "upload_time": "2020-07-14T18:49:08", "upload_time_iso_8601": "2020-07-14T18:49:08.094895Z", "url": "https://files.pythonhosted.org/packages/88/2e/d74b036f2f3b0d4b299a2eaa09b8cfd0aab77d7dc1721164bbc593826b02/cvxpy-1.1.2-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d13f81197ab9f6b0a1e30d75edb4ba9e", "sha256": "5f692d6e02223f90e3798069016f5f60129696e77825f145a068dfb3efac6be6" }, "downloads": -1, "filename": "cvxpy-1.1.2-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "d13f81197ab9f6b0a1e30d75edb4ba9e", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1553018, "upload_time": "2020-07-14T19:00:06", "upload_time_iso_8601": "2020-07-14T19:00:06.944679Z", "url": "https://files.pythonhosted.org/packages/36/5c/2a9e84dc3e56354a23bf0cf47824185885af8f987db71a5f0762d10d0f6e/cvxpy-1.1.2-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1acddd308a8a6ff08c0a2c381b94ed0e", "sha256": "9d6d6e315cbf6ec9063feac64c083758e6486a384a9143df5c281ad07f65087b" }, "downloads": -1, "filename": "cvxpy-1.1.2.tar.gz", "has_sig": false, "md5_digest": "1acddd308a8a6ff08c0a2c381b94ed0e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 994497, "upload_time": "2020-07-14T18:47:26", "upload_time_iso_8601": "2020-07-14T18:47:26.496903Z", "url": "https://files.pythonhosted.org/packages/54/23/5cd6dfa09abd764c3ca281074cb49f0c88476f8b2f249c305ca5ee911dd3/cvxpy-1.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.20": [ { "comment_text": "", "digests": { "md5": "cd0e7e827a6e72cf026518047a114ba3", "sha256": "446fb75b9963f75f6bb498c6dfd7ccfcb027306e4edf4e64bfe8e43257392398" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cd0e7e827a6e72cf026518047a114ba3", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 858343, "upload_time": "2022-05-16T18:42:13", "upload_time_iso_8601": "2022-05-16T18:42:13.967795Z", "url": "https://files.pythonhosted.org/packages/09/58/80b88969bf8c6b0621f546ce82477ab57c6589366a02bed459eb68df6bbc/cvxpy-1.1.20-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe4524a7cd7484d1739d5d3d25f9b72b", "sha256": "ddd233f63254b4430c03d4c48a8b54845fc1ff78445c24f58b935adb31ef1312" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp310-cp310-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "fe4524a7cd7484d1739d5d3d25f9b72b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2734308, "upload_time": "2022-05-16T18:31:43", "upload_time_iso_8601": "2022-05-16T18:31:43.052544Z", "url": "https://files.pythonhosted.org/packages/39/e2/7642d2a6efee675c6369c07a7f5dba6a69a355cdacf32d80b544e064804c/cvxpy-1.1.20-cp310-cp310-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bec701e1dae845beb375bbce8847f7f", "sha256": "94fa86fc30a167f9cea7e7f74fca7ce942031ed5e28be83fc592eba82bb4d1bb" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "8bec701e1dae845beb375bbce8847f7f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 812127, "upload_time": "2022-05-16T18:36:16", "upload_time_iso_8601": "2022-05-16T18:36:16.618033Z", "url": "https://files.pythonhosted.org/packages/5a/5d/7af5bdb665f1b78540b16dc30fae7e75ceef8984ec9d2ee44b3cd4c1890e/cvxpy-1.1.20-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37e1ab4873927c120917fd5676c1adcd", "sha256": "a5fe8b68e5035b06e3f8cd795285231749c77228681e5ab20de613a00a93c9e3" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "37e1ab4873927c120917fd5676c1adcd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 855949, "upload_time": "2022-05-16T18:44:35", "upload_time_iso_8601": "2022-05-16T18:44:35.208157Z", "url": "https://files.pythonhosted.org/packages/ee/79/0513ae052ddc8752f39f345707c5228d73506a9d309d039208deb4c4cc15/cvxpy-1.1.20-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b75416ce2a1812177133668bb32676ac", "sha256": "174efaeb7fc14920d4103dbafd29b04904d4382574db679b7b5f2e954ab78333" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp36-cp36m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "b75416ce2a1812177133668bb32676ac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2736693, "upload_time": "2022-05-16T18:32:24", "upload_time_iso_8601": "2022-05-16T18:32:24.121872Z", "url": "https://files.pythonhosted.org/packages/19/bf/e03d33b02e2f3d5b3893efff31e86a1f8276a9af4d358a31718c1b67d111/cvxpy-1.1.20-cp36-cp36m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6ec7a5be0032c07920fb54c984a8ba7", "sha256": "a9b0c552e61952d81063e81770422e5c9000b38f4739f42980b589167fb5a76f" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c6ec7a5be0032c07920fb54c984a8ba7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 833377, "upload_time": "2022-05-16T18:36:49", "upload_time_iso_8601": "2022-05-16T18:36:49.313292Z", "url": "https://files.pythonhosted.org/packages/c9/7c/a959826a9e0418d06baaf8fdd35c450d4c35623113eb62fe58a20f09e3c4/cvxpy-1.1.20-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d615cb53fdf02a57fb8b51dc7423493", "sha256": "7cc402e1ee2638896e87538f4ef303728c80bbbc796cb2ba238d04fd3dcbce07" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9d615cb53fdf02a57fb8b51dc7423493", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 857785, "upload_time": "2022-05-16T18:47:14", "upload_time_iso_8601": "2022-05-16T18:47:14.763463Z", "url": "https://files.pythonhosted.org/packages/3d/55/21f47d0acd824dfd7ecbfd5412e589fbf6712b5abd04a9f38356018b4790/cvxpy-1.1.20-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12b08dbb21bb73ece87b0d18a074dda3", "sha256": "e2955e239a9b89d20f19edaaf05fa100100ea70637b21358ff90c4c40a0d710c" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "12b08dbb21bb73ece87b0d18a074dda3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2753451, "upload_time": "2022-05-16T18:32:30", "upload_time_iso_8601": "2022-05-16T18:32:30.519849Z", "url": "https://files.pythonhosted.org/packages/6c/ac/057c1eac59a694c452fb1df172e8675328dbd5e3b49c6475c4bbc491c14c/cvxpy-1.1.20-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c88ddbef5f54ee0eb5f40240c6d41ab", "sha256": "4326f39ebbb14f600ce4d7640b42fa35e19067a54b93196eb0f0d2866f906f6d" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "3c88ddbef5f54ee0eb5f40240c6d41ab", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 808173, "upload_time": "2022-05-16T18:35:51", "upload_time_iso_8601": "2022-05-16T18:35:51.907763Z", "url": "https://files.pythonhosted.org/packages/b6/98/db34671215ffdde55aae154bf22510b0a8bff22cb30325902f5add690497/cvxpy-1.1.20-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9c40484026d963436b00286dbccc07a", "sha256": "654bb2a28815e9f352e9079f9b56a07aa0fa789361706d49d8e8cee5cbb3e415" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b9c40484026d963436b00286dbccc07a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 858720, "upload_time": "2022-05-16T18:47:49", "upload_time_iso_8601": "2022-05-16T18:47:49.240463Z", "url": "https://files.pythonhosted.org/packages/ea/01/2dd1dc00e3454cd259f19931649736dab127a458a8527d6678c8eeaebf64/cvxpy-1.1.20-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b296224520bd3eb6f17929db2f36eb54", "sha256": "4ffd63841ff46fcb635ea37d01e79f23a6a095975037a327390c4b76579b6da1" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "b296224520bd3eb6f17929db2f36eb54", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2738534, "upload_time": "2022-05-16T18:35:25", "upload_time_iso_8601": "2022-05-16T18:35:25.900342Z", "url": "https://files.pythonhosted.org/packages/0f/f8/5fe039db65f9e0109a320971ccc6c216b99057cd4b1313941ea358ec984b/cvxpy-1.1.20-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b07dfc06927d621504018b563d647d55", "sha256": "bfbe6215754f6de0413a48b38363ad8ed2c18a346a5b637856fbef5c791b9bfe" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "b07dfc06927d621504018b563d647d55", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 808281, "upload_time": "2022-05-16T18:36:51", "upload_time_iso_8601": "2022-05-16T18:36:51.320883Z", "url": "https://files.pythonhosted.org/packages/bd/f4/5c029435e12bb0dbc2bf51823f259e9a986fd6bb3f802aef181ef18603df/cvxpy-1.1.20-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c893f40e49549c97a3c620b8300cc98", "sha256": "0d899134f93b5adc8e910be3fb52a1cbdce4dd074cc8c2ea7c52f26285d633f0" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4c893f40e49549c97a3c620b8300cc98", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 858345, "upload_time": "2022-05-16T18:46:26", "upload_time_iso_8601": "2022-05-16T18:46:26.002731Z", "url": "https://files.pythonhosted.org/packages/02/7e/1d16dce346ce5470f4bcde60d36f7fa3cf1583ac4b0302ba51121d02b9fe/cvxpy-1.1.20-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8309676c7cefc40e61a9a42721477b7f", "sha256": "38924ee5cfc8e899aa870389df79a128a1d01f8f2e5a372cd68a0ec812ce4d75" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "8309676c7cefc40e61a9a42721477b7f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2734650, "upload_time": "2022-05-16T18:33:13", "upload_time_iso_8601": "2022-05-16T18:33:13.907374Z", "url": "https://files.pythonhosted.org/packages/84/2d/3471e25d697db5f65a2c851d70700fbd43a14e8aaf258ee4aab42ff21c9d/cvxpy-1.1.20-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a523b0eb11ff4de8a9001aaab47aaa0", "sha256": "b680d1c62e0c24e4238a66234655021b207398c9d1d1c7859d2391be968eeed1" }, "downloads": -1, "filename": "cvxpy-1.1.20-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "1a523b0eb11ff4de8a9001aaab47aaa0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 812160, "upload_time": "2022-05-16T18:35:57", "upload_time_iso_8601": "2022-05-16T18:35:57.643074Z", "url": "https://files.pythonhosted.org/packages/f1/79/5d72d7df6727e4781107d6f499ea1388f600d967168c2b3866663b500ca7/cvxpy-1.1.20-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "7c50433be21e027b6efa3cd3a1f14854", "sha256": "f628a80733f29ec6aae9750fce2ca73fed62d88efb94ab1b7746042e7b447526" }, "downloads": -1, "filename": "cvxpy-1.1.3-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "7c50433be21e027b6efa3cd3a1f14854", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 814852, "upload_time": "2020-07-14T21:26:44", "upload_time_iso_8601": "2020-07-14T21:26:44.473704Z", "url": "https://files.pythonhosted.org/packages/8f/84/2cf347ecdd6cc207f937579d5d2c8a4f357aac0e9bc57928f8e9777d144a/cvxpy-1.1.3-cp35-cp35m-macosx_10_6_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18a57cf42e1a8466498106da775ea1b2", "sha256": "cb15d2f5d15c0ad46e1c7f6986b74e8e6598e8f1a6600943d65f49bb8c6e2ea9" }, "downloads": -1, "filename": "cvxpy-1.1.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "18a57cf42e1a8466498106da775ea1b2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 766253, "upload_time": "2020-07-14T21:21:13", "upload_time_iso_8601": "2020-07-14T21:21:13.777066Z", "url": "https://files.pythonhosted.org/packages/3e/1e/cf6e080e7004ea3fc8f80069a69d08667b06135b58bf8521a3244f8ee0e1/cvxpy-1.1.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e96cbeae581073cee45e99c2efe4c2af", "sha256": "05088d211e5bba9f82cca1772380cc0b8b3ab3afb5ebbaaf885d50fbf4a0077f" }, "downloads": -1, "filename": "cvxpy-1.1.3-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e96cbeae581073cee45e99c2efe4c2af", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 818958, "upload_time": "2020-07-14T21:31:30", "upload_time_iso_8601": "2020-07-14T21:31:30.954785Z", "url": "https://files.pythonhosted.org/packages/c2/d4/4f4183306b9add72fa2e79296713b49434cb03825d619c1eac403276598d/cvxpy-1.1.3-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8535ba8eea3009adc4f045439a6417d1", "sha256": "d7a0d436387c1d7d79be276239df80e4fe17d6d9d5b231896a988581c253ba93" }, "downloads": -1, "filename": "cvxpy-1.1.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "8535ba8eea3009adc4f045439a6417d1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 766262, "upload_time": "2020-07-14T21:31:36", "upload_time_iso_8601": "2020-07-14T21:31:36.109382Z", "url": "https://files.pythonhosted.org/packages/64/b4/1f38019f06a140aa4e360acf5cef8bde6ab880b2ab085aad6279c6cf4ba4/cvxpy-1.1.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90f61ab127e5a9365042c365af80e7b4", "sha256": "401ac7988a786008587920cba6c65c69103b6092dc7a0fadba291a4b62f89d2f" }, "downloads": -1, "filename": "cvxpy-1.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "90f61ab127e5a9365042c365af80e7b4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 818958, "upload_time": "2020-07-14T21:44:36", "upload_time_iso_8601": "2020-07-14T21:44:36.616939Z", "url": "https://files.pythonhosted.org/packages/d5/a9/a69c9ee5724165c70fccac3995e6bfb839827586cee217dca411e93e0eeb/cvxpy-1.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8c0620b74ac1c007fc6b2b84edf233d", "sha256": "f8cdd4b442b729cb8a49df4d29f74dfb8185af75a5b042eb193d4252e0158152" }, "downloads": -1, "filename": "cvxpy-1.1.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "d8c0620b74ac1c007fc6b2b84edf233d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 766264, "upload_time": "2020-07-14T21:42:23", "upload_time_iso_8601": "2020-07-14T21:42:23.028911Z", "url": "https://files.pythonhosted.org/packages/6f/9c/5294e9de789926924c7018a6d0c4b7dd180eba66d5c85ddd42dbf978f88f/cvxpy-1.1.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6016f42b28bd82289436855512e53a85", "sha256": "3113917b005416c14f719306efe1dd7ce9d8a8e9eb1a8f21109236a3f7c5b05e" }, "downloads": -1, "filename": "cvxpy-1.1.3-py3.5-win-amd64.egg", "has_sig": false, "md5_digest": "6016f42b28bd82289436855512e53a85", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": ">=3.5", "size": 1573217, "upload_time": "2020-07-14T21:21:14", "upload_time_iso_8601": "2020-07-14T21:21:14.924286Z", "url": "https://files.pythonhosted.org/packages/0f/73/05be5c4a2fca300e4f0d399ed473685b61c7259489abac2cb05cbe7260bc/cvxpy-1.1.3-py3.5-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9aa882bedea1e10c156f5626958cfeb", "sha256": "d8cf3bcf4ba4c093ed36c8896c511ce75a69ee51068043398f317eaf1a09dd69" }, "downloads": -1, "filename": "cvxpy-1.1.3-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "b9aa882bedea1e10c156f5626958cfeb", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1552839, "upload_time": "2020-07-14T21:31:37", "upload_time_iso_8601": "2020-07-14T21:31:37.206277Z", "url": "https://files.pythonhosted.org/packages/87/bd/b5a113d528aefa57d9c93c61532382789b0457fab66ff8a3a44eec89a5f6/cvxpy-1.1.3-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c130488c4b0ac81e6a973dbcbb09a22e", "sha256": "49247d4a4d5f4d127f5b3c0d7c415a861f591ddda659e47fbf0cd0769a701b40" }, "downloads": -1, "filename": "cvxpy-1.1.3-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "c130488c4b0ac81e6a973dbcbb09a22e", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1552829, "upload_time": "2020-07-14T21:42:24", "upload_time_iso_8601": "2020-07-14T21:42:24.315686Z", "url": "https://files.pythonhosted.org/packages/41/92/afbea512b772d63a546097f96eeb98da2bcba52f9cfc749820261bd26022/cvxpy-1.1.3-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a237ff2791aea902f386b56183b2bda6", "sha256": "6ce061bd431b05b8c47faa5044cdd5ad5654da4a4bd5c4360bd3c786ee4c64eb" }, "downloads": -1, "filename": "cvxpy-1.1.3.tar.gz", "has_sig": false, "md5_digest": "a237ff2791aea902f386b56183b2bda6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 994442, "upload_time": "2020-07-14T21:30:56", "upload_time_iso_8601": "2020-07-14T21:30:56.836456Z", "url": "https://files.pythonhosted.org/packages/e1/a2/22ced5f7917d50df84209d58f3b75214e05d91252c7855387c2150598ba5/cvxpy-1.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "b7c7c41cb4599427a6e71937507963f4", "sha256": "e2861edcd911b363e6474248c5361b4acc83d62e62124137d4f14b0731c0c8aa" }, "downloads": -1, "filename": "cvxpy-1.1.4-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "b7c7c41cb4599427a6e71937507963f4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 817816, "upload_time": "2020-08-14T19:27:47", "upload_time_iso_8601": "2020-08-14T19:27:47.763978Z", "url": "https://files.pythonhosted.org/packages/1e/32/8d4720d33bb5c2e94405ac4bc7d410d19be8642cbf6df7d41da632934785/cvxpy-1.1.4-cp35-cp35m-macosx_10_6_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4167e82e79d2c5ee5c82b19dbacf9d80", "sha256": "ba5932c7650d78f3acfc9920df8f0aca174eda580c12aa67eb25e20ac17c6698" }, "downloads": -1, "filename": "cvxpy-1.1.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4167e82e79d2c5ee5c82b19dbacf9d80", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 769219, "upload_time": "2020-08-14T21:06:35", "upload_time_iso_8601": "2020-08-14T21:06:35.078738Z", "url": "https://files.pythonhosted.org/packages/76/b5/68108b423351da37dc85d66a6b85c57e98eff7157122664f141e477f1a91/cvxpy-1.1.4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60aebdd9374e0c0c1ad5cb51b93c02a1", "sha256": "1fbdc89fea9cdc23264e291b517fc9ab32b8b9af26a407a74d2dbcbe0d952925" }, "downloads": -1, "filename": "cvxpy-1.1.4-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "60aebdd9374e0c0c1ad5cb51b93c02a1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 821925, "upload_time": "2020-08-14T19:28:15", "upload_time_iso_8601": "2020-08-14T19:28:15.667920Z", "url": "https://files.pythonhosted.org/packages/01/ea/620da00e2d68fa39f3844e8e9a77fb4cae56dc44e3b9977cfd6328aa8ddf/cvxpy-1.1.4-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f563c574cb7e1451e3e706264337622d", "sha256": "92bac7cea295ed8f49014953818b35d3478738fb08c558636f378771728add9d" }, "downloads": -1, "filename": "cvxpy-1.1.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f563c574cb7e1451e3e706264337622d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 769232, "upload_time": "2020-08-14T21:17:30", "upload_time_iso_8601": "2020-08-14T21:17:30.503913Z", "url": "https://files.pythonhosted.org/packages/10/5a/8136bb1fb4fbdbaee6600dbf2172d59619841d73ccd06e7cf99961935a0f/cvxpy-1.1.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c33f972338f3629719e17f3ac61fb529", "sha256": "af9d76b7b67ec1567533f63b103328211162cd948df6fa8a9acc095ec925b1c3" }, "downloads": -1, "filename": "cvxpy-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c33f972338f3629719e17f3ac61fb529", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 821924, "upload_time": "2020-08-14T19:43:59", "upload_time_iso_8601": "2020-08-14T19:43:59.615115Z", "url": "https://files.pythonhosted.org/packages/ef/4b/1533b95fc834c4c2ae7aae6ab7b54134b2ce1a716b869ad41af843a0bfbe/cvxpy-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "091655d0b75e6648e395f92ec6d6723a", "sha256": "dbc9bd97022345a657cda7d846e933aac710c95e599d05004c10d77a53720fe6" }, "downloads": -1, "filename": "cvxpy-1.1.4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "091655d0b75e6648e395f92ec6d6723a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 769231, "upload_time": "2020-08-14T21:27:45", "upload_time_iso_8601": "2020-08-14T21:27:45.462621Z", "url": "https://files.pythonhosted.org/packages/c3/a0/9ffd0200228cc3b4394315284b6dba17fd66761a7313e752bf7c2a5aaa4f/cvxpy-1.1.4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eaff55b9f7de4a8b94982db637ee32ed", "sha256": "1cfb749234b4a216278807d00a086be48aedc05ab9edc65f83177e43d5be0906" }, "downloads": -1, "filename": "cvxpy-1.1.4-py3.5-win-amd64.egg", "has_sig": false, "md5_digest": "eaff55b9f7de4a8b94982db637ee32ed", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": ">=3.5", "size": 1580740, "upload_time": "2020-08-14T21:06:36", "upload_time_iso_8601": "2020-08-14T21:06:36.351245Z", "url": "https://files.pythonhosted.org/packages/13/61/d685d95ad5732edd674c24c0ffaf491b0191b55695e12f59360ab1121ba7/cvxpy-1.1.4-py3.5-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4741cda2c0abcd30c48f6f72c0e3878", "sha256": "d668f98fcedf3d80099efb9b4b583e39b5f7fa4add5df8a8bbdbeaf494d7edcc" }, "downloads": -1, "filename": "cvxpy-1.1.4-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "f4741cda2c0abcd30c48f6f72c0e3878", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1561098, "upload_time": "2020-08-14T21:17:31", "upload_time_iso_8601": "2020-08-14T21:17:31.554782Z", "url": "https://files.pythonhosted.org/packages/05/1a/632564388d0da8d5357c0ef1995e29e5902e53832da9fe25aab665482803/cvxpy-1.1.4-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "086b6ed6c6c552aca6453e6d0cb8c8c1", "sha256": "0107bfa771ebe49c9e32681908d0a115d0ddcb2fd0b17727062b96a9a123b18b" }, "downloads": -1, "filename": "cvxpy-1.1.4-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "086b6ed6c6c552aca6453e6d0cb8c8c1", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1561274, "upload_time": "2020-08-14T21:27:46", "upload_time_iso_8601": "2020-08-14T21:27:46.975970Z", "url": "https://files.pythonhosted.org/packages/82/62/fc7de00aae6fcecf34143d20c36ae6cb8b1cdeb5ff27f034dac77c619574/cvxpy-1.1.4-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b55148df1075a64ad54ea0c7dd632fd7", "sha256": "1f37da2f891508ebc2bbb2b75c46a2076be39a60a45c8a88261e000e8aabeef2" }, "downloads": -1, "filename": "cvxpy-1.1.4.tar.gz", "has_sig": false, "md5_digest": "b55148df1075a64ad54ea0c7dd632fd7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 995866, "upload_time": "2020-08-14T19:27:41", "upload_time_iso_8601": "2020-08-14T19:27:41.765538Z", "url": "https://files.pythonhosted.org/packages/7a/12/5f93e490918ca4ca050646891fb0aa50eb637369bd317bc8517928716656/cvxpy-1.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "a26a486afa9a4f4e9c12f26a9394f5c3", "sha256": "a21e6a5c49ff04b29c47ecd1c9d4e3dee070c1d1df4f71a310addc2e54f85c7e" }, "downloads": -1, "filename": "cvxpy-1.1.5-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a26a486afa9a4f4e9c12f26a9394f5c3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 823791, "upload_time": "2020-08-27T04:44:55", "upload_time_iso_8601": "2020-08-27T04:44:55.965437Z", "url": "https://files.pythonhosted.org/packages/df/30/19d8224137fece1eec176bdb5a7701931e9bc2598e254b82c024f5f9b9d7/cvxpy-1.1.5-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "346f386f74a562a40718c4ac67612b36", "sha256": "20f3ae7b732b33475a44ec2c810fefc0717fed35e3c677611040049751f3c854" }, "downloads": -1, "filename": "cvxpy-1.1.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "346f386f74a562a40718c4ac67612b36", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 771088, "upload_time": "2020-08-27T04:47:36", "upload_time_iso_8601": "2020-08-27T04:47:36.102735Z", "url": "https://files.pythonhosted.org/packages/84/75/0a990f9d892910ec88d14b9cb28a38ef473b14c11b573660c730d483f29a/cvxpy-1.1.5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a19c5af2ec9e397f36499bb19c5707d4", "sha256": "9d4b7fad457875b90ba7ca93ca9797715dcfe8bc2044a13eed5ce3735ca4bdf6" }, "downloads": -1, "filename": "cvxpy-1.1.5-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a19c5af2ec9e397f36499bb19c5707d4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 823791, "upload_time": "2020-08-27T04:43:52", "upload_time_iso_8601": "2020-08-27T04:43:52.831906Z", "url": "https://files.pythonhosted.org/packages/8c/0d/8a762cee3ba68e27eac2efac1310ed1838c17c9381c3982f3ca5ada76243/cvxpy-1.1.5-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53d27468e53f3734d875cf9336b33bdb", "sha256": "d12ce601b97264295f5c59d55a7fe1f479c074cbb064e7aa8818442c04c84a9d" }, "downloads": -1, "filename": "cvxpy-1.1.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "53d27468e53f3734d875cf9336b33bdb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 771101, "upload_time": "2020-08-27T04:58:53", "upload_time_iso_8601": "2020-08-27T04:58:53.143691Z", "url": "https://files.pythonhosted.org/packages/b0/3b/f9f342abecdcdb50d8281bd91dbc9f9aad6cfa6b023244cc2a4fd0fcec4d/cvxpy-1.1.5-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e200337ca3999a1f2990bd1cd4af5c2f", "sha256": "51280efcc041855bb009bf304d0005d5b352e8027f09d40d60f69cc056e2afa2" }, "downloads": -1, "filename": "cvxpy-1.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e200337ca3999a1f2990bd1cd4af5c2f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 823792, "upload_time": "2020-08-27T04:58:54", "upload_time_iso_8601": "2020-08-27T04:58:54.932585Z", "url": "https://files.pythonhosted.org/packages/89/5d/beb4b2736612cb5f5c722e3ab38a6dd9ae40c372d099301b97494672f1bd/cvxpy-1.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ea2ec967deae6e2ead5667d80378e48", "sha256": "7c10f6402fc1f075be7ac0ca0ad31340bac5a6ad4bbc01f94fa2232ec6f784d4" }, "downloads": -1, "filename": "cvxpy-1.1.5-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "4ea2ec967deae6e2ead5667d80378e48", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 771098, "upload_time": "2020-08-27T05:09:10", "upload_time_iso_8601": "2020-08-27T05:09:10.244226Z", "url": "https://files.pythonhosted.org/packages/cf/68/14abdc59c4f8915821e690c03e331614dd3efba908d2d6bfd3d5a8726f92/cvxpy-1.1.5-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb210e1c4d526fe4a914fb76c25e5994", "sha256": "51e61497a1aaa43ee78430929e77f8acaf1bc9d2cb4187fee3a9a4f7f790230d" }, "downloads": -1, "filename": "cvxpy-1.1.5-py3.5-win-amd64.egg", "has_sig": false, "md5_digest": "cb210e1c4d526fe4a914fb76c25e5994", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": ">=3.5", "size": 1585362, "upload_time": "2020-08-27T04:47:37", "upload_time_iso_8601": "2020-08-27T04:47:37.477457Z", "url": "https://files.pythonhosted.org/packages/5a/46/f191385b06c1e7d33937778dc60ba6901a925d3c8902dc495fbe80676a46/cvxpy-1.1.5-py3.5-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d88048065a7ba7a890c966c5c1e475e9", "sha256": "683fd7f56457a7f2375a47e2ed952adcdf47fffd290e56d213fee73ff115b315" }, "downloads": -1, "filename": "cvxpy-1.1.5-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "d88048065a7ba7a890c966c5c1e475e9", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1565146, "upload_time": "2020-08-27T04:58:54", "upload_time_iso_8601": "2020-08-27T04:58:54.330785Z", "url": "https://files.pythonhosted.org/packages/cf/a0/73e5d74020c9292fc044eafeb86299d38d818c9ffab542f57f7038eb88ff/cvxpy-1.1.5-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "268ec15233c201723ddcd10b2813effb", "sha256": "382ea3dca38b4cf0004c1b9fa0fd2c97d07f2c1fbfd5da667e45a44ff622a297" }, "downloads": -1, "filename": "cvxpy-1.1.5-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "268ec15233c201723ddcd10b2813effb", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1565459, "upload_time": "2020-08-27T05:09:11", "upload_time_iso_8601": "2020-08-27T05:09:11.525961Z", "url": "https://files.pythonhosted.org/packages/2c/7f/50b172fc30767d0b258724e3d87f5d96fb11d6fcad71168abeee5d489bd4/cvxpy-1.1.5-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd83fbac06dfee457e56ab9dd3d4d53c", "sha256": "7c826a874db2e4cefe54e63ebd3a3763d0d72e55a17c7d1cfec80008a87b8d81" }, "downloads": -1, "filename": "cvxpy-1.1.5.tar.gz", "has_sig": false, "md5_digest": "dd83fbac06dfee457e56ab9dd3d4d53c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 997380, "upload_time": "2020-08-27T04:43:18", "upload_time_iso_8601": "2020-08-27T04:43:18.783050Z", "url": "https://files.pythonhosted.org/packages/f5/e6/645a120f302eeccd5fdf5d2983cb8587ac859dfabc43972883de55202577/cvxpy-1.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "b5f993c3aba670606b66d5dbb0f88736", "sha256": "7d6a9e25e0444bc1be1a2ba6065a608c850282ac65a4394482f8cdff212908c6" }, "downloads": -1, "filename": "cvxpy-1.1.6-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b5f993c3aba670606b66d5dbb0f88736", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 835020, "upload_time": "2020-10-07T17:42:13", "upload_time_iso_8601": "2020-10-07T17:42:13.346031Z", "url": "https://files.pythonhosted.org/packages/06/db/c68a10eb57df7966604ddfb04fc44c5e251a5e5fe9a90b5306608badf795/cvxpy-1.1.6-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91680fd57771f0b0a7ae1c3c334be2c8", "sha256": "a0b22beafce5ee9e706fa40206322bd9669904c2e0005caf970f42c8c9af8781" }, "downloads": -1, "filename": "cvxpy-1.1.6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "91680fd57771f0b0a7ae1c3c334be2c8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 782318, "upload_time": "2020-10-07T18:02:21", "upload_time_iso_8601": "2020-10-07T18:02:21.318525Z", "url": "https://files.pythonhosted.org/packages/2e/10/19fcb8ba41ef0d99109a7788dc747e181280056eded3327fa379e99d67d3/cvxpy-1.1.6-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31fe1030ec882b9c2834a2df19072b37", "sha256": "23b9d2ed0908102503b041ac1fdb7761c3e3ed4cf7364b0d2163c24c7225be07" }, "downloads": -1, "filename": "cvxpy-1.1.6-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "31fe1030ec882b9c2834a2df19072b37", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 835021, "upload_time": "2020-10-07T17:46:28", "upload_time_iso_8601": "2020-10-07T17:46:28.308696Z", "url": "https://files.pythonhosted.org/packages/f2/2a/cb7a80f552be17328130ba8b9a6bfcc28aa97381f3290f3936e8e34f12a6/cvxpy-1.1.6-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0524e9d732bb451536c095819792d008", "sha256": "b8394cddd82cdce7731acc2b168e0a57478be29d01c4a2aa9192a460ec1e30ab" }, "downloads": -1, "filename": "cvxpy-1.1.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "0524e9d732bb451536c095819792d008", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 782332, "upload_time": "2020-10-07T18:15:05", "upload_time_iso_8601": "2020-10-07T18:15:05.978804Z", "url": "https://files.pythonhosted.org/packages/7f/f5/2e3115356f8df11e043310c380604dd36db3fae53b954149e3029a49128c/cvxpy-1.1.6-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3774c4c90360192443219fc4d928ce5d", "sha256": "be8083cd20ed5716c92514ec060787390216f4c73f1f713cee014b8f5a0b8677" }, "downloads": -1, "filename": "cvxpy-1.1.6-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3774c4c90360192443219fc4d928ce5d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 835024, "upload_time": "2020-10-07T18:00:52", "upload_time_iso_8601": "2020-10-07T18:00:52.696683Z", "url": "https://files.pythonhosted.org/packages/91/9c/b38b3496efb0176474cb612f7c3acfef40df370b31b8c3e5b13af6242e19/cvxpy-1.1.6-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1be6c33c51d51c77afdb236cb1b1670f", "sha256": "edca1d52959441402c6c7d490cd9582e66967316118e31d68437069197b27f8f" }, "downloads": -1, "filename": "cvxpy-1.1.6-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1be6c33c51d51c77afdb236cb1b1670f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 782328, "upload_time": "2020-10-07T18:26:00", "upload_time_iso_8601": "2020-10-07T18:26:00.935046Z", "url": "https://files.pythonhosted.org/packages/5d/51/9507c1567d1e24f5483d52f2700fb0b677cc536b710200e7ef4f695aa7a6/cvxpy-1.1.6-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7156991cb073cd5ef940a01f8a0276c7", "sha256": "1f57d98655944f19cdffad4eac7bd365eb88cd3935ce2a86983415f98aa81710" }, "downloads": -1, "filename": "cvxpy-1.1.6-py3.5-win-amd64.egg", "has_sig": false, "md5_digest": "7156991cb073cd5ef940a01f8a0276c7", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": ">=3.5", "size": 1613262, "upload_time": "2020-10-07T18:02:22", "upload_time_iso_8601": "2020-10-07T18:02:22.902782Z", "url": "https://files.pythonhosted.org/packages/d1/1c/ecb36aa13c141971c196d5f4af4d264219ecafb5e276ff1e5de484bf2421/cvxpy-1.1.6-py3.5-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e366f0209498719e754d241de322cea9", "sha256": "a0a2fa71a3474f9c8456270f4dfc925c6d8b6ca9df08a1eebd085dd935400241" }, "downloads": -1, "filename": "cvxpy-1.1.6-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "e366f0209498719e754d241de322cea9", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1592391, "upload_time": "2020-10-07T18:15:07", "upload_time_iso_8601": "2020-10-07T18:15:07.354273Z", "url": "https://files.pythonhosted.org/packages/af/bf/a6af720c5187f6b41bd45dd15ea467115dc52f15adb19a25d3f8f3b7db4a/cvxpy-1.1.6-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21a2ecd9afb702eb54ce3325862c610b", "sha256": "bd65ec2f171cce954645da080aaa43914e712d489fb153116a0d2044b72eb403" }, "downloads": -1, "filename": "cvxpy-1.1.6-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "21a2ecd9afb702eb54ce3325862c610b", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1592780, "upload_time": "2020-10-07T18:26:02", "upload_time_iso_8601": "2020-10-07T18:26:02.866781Z", "url": "https://files.pythonhosted.org/packages/53/6f/12f8be8d0778bfb2d63bdd94d050f974afc34cd27843e4ad87402ae0bf34/cvxpy-1.1.6-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f3f03ed7562c3bfb8f2d38c2901d983", "sha256": "36527573c937cedd270f46c77b50bb5e16b96ca7b05a7a480bdc8c9052595723" }, "downloads": -1, "filename": "cvxpy-1.1.6.tar.gz", "has_sig": false, "md5_digest": "2f3f03ed7562c3bfb8f2d38c2901d983", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 1005779, "upload_time": "2020-10-07T17:45:51", "upload_time_iso_8601": "2020-10-07T17:45:51.280856Z", "url": "https://files.pythonhosted.org/packages/1e/b3/6b6a04877851e8ca001849402ece8fec942d4151bbb3e4726d422a0c5d27/cvxpy-1.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "005afaa61f3d50dd438584b23b233861", "sha256": "a4a7ca9af06775dfe63dfb0a5937ab3e83cee6f5fdc1472c09a36a32cc3beeb8" }, "downloads": -1, "filename": "cvxpy-1.1.7-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "005afaa61f3d50dd438584b23b233861", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 835149, "upload_time": "2020-10-22T19:40:18", "upload_time_iso_8601": "2020-10-22T19:40:18.759003Z", "url": "https://files.pythonhosted.org/packages/50/ad/c6f46e244a533465bf19bbaf5c0055823bfb6edaa73dc2ffd3ae1218f3db/cvxpy-1.1.7-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03e11bc32ca33964c252c5b80006045d", "sha256": "0a57b866d36783fb122c563453f36860b877fda2c45763e872ed4a007c289af6" }, "downloads": -1, "filename": "cvxpy-1.1.7-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "03e11bc32ca33964c252c5b80006045d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5", "size": 782383, "upload_time": "2020-10-22T20:03:48", "upload_time_iso_8601": "2020-10-22T20:03:48.906402Z", "url": "https://files.pythonhosted.org/packages/e3/f2/8dbafbb8208d18963ac0be5596310ed2ae5b82dd4a212acec2a9ca2276cf/cvxpy-1.1.7-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "035d19d621b10eb73846e44beb5425e4", "sha256": "6718b6555f3719f6da9bd729fb810f860cf8dcd7b48212a223a41532c5cca6dd" }, "downloads": -1, "filename": "cvxpy-1.1.7-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "035d19d621b10eb73846e44beb5425e4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 835149, "upload_time": "2020-10-22T19:58:34", "upload_time_iso_8601": "2020-10-22T19:58:34.532731Z", "url": "https://files.pythonhosted.org/packages/9f/c0/669aa02f9387c8e9f88ad97efa86476b7d4763b1041ea770643f0b2d089e/cvxpy-1.1.7-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30a0726ca35c110117e51e7d64f1f831", "sha256": "e5512489a5ba83801579fb142e711fda8df72c055df5652ffae4e51a96d437d6" }, "downloads": -1, "filename": "cvxpy-1.1.7-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "30a0726ca35c110117e51e7d64f1f831", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 782399, "upload_time": "2020-10-22T20:14:29", "upload_time_iso_8601": "2020-10-22T20:14:29.329838Z", "url": "https://files.pythonhosted.org/packages/9c/75/db8fbd73e81486eae24447d9797efa69da4f1eb4e96f3a5db5f71bf6e014/cvxpy-1.1.7-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b91c9a8d37f58adf67e4deea11a2250", "sha256": "40f8a446446070c7d336270ba69a553a9b139af264b09675e9c85d3751d3c840" }, "downloads": -1, "filename": "cvxpy-1.1.7-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1b91c9a8d37f58adf67e4deea11a2250", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 835153, "upload_time": "2020-10-22T20:14:18", "upload_time_iso_8601": "2020-10-22T20:14:18.112647Z", "url": "https://files.pythonhosted.org/packages/d5/98/9541324a01e57a1069c9af93cd0ac74662cf02df9aa5f6ac79fe182fa0ef/cvxpy-1.1.7-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4d55c15b2fb4d254a1e64387d57e149", "sha256": "46b29e622c7e9cb5463f514e7d9fc5f17129b89991a753c215f021f59442e386" }, "downloads": -1, "filename": "cvxpy-1.1.7-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f4d55c15b2fb4d254a1e64387d57e149", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 782397, "upload_time": "2020-10-22T20:25:09", "upload_time_iso_8601": "2020-10-22T20:25:09.756592Z", "url": "https://files.pythonhosted.org/packages/1b/e8/0bf78c3536fa3f1c228b1369c603d8097924ce1374bd09d76ffbe70dda67/cvxpy-1.1.7-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75e49f1004dc9c83a92d38e847b19501", "sha256": "51e6d0e6a6d85b885e99fa443d60f5a07d2a3153b033eae325290f9bfaa48939" }, "downloads": -1, "filename": "cvxpy-1.1.7-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "75e49f1004dc9c83a92d38e847b19501", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.5", "size": 837159, "upload_time": "2020-12-31T19:44:12", "upload_time_iso_8601": "2020-12-31T19:44:12.032849Z", "url": "https://files.pythonhosted.org/packages/4a/bb/1421132888daff1d63d49295fcd1db2233b9371ebd9ebe96ec32c7d157ec/cvxpy-1.1.7-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "446cc639963591429339a24de1595505", "sha256": "57cca8490a0d9ea0545ada8da61dfc6bcec91f9a213153224b8b360875d984c7" }, "downloads": -1, "filename": "cvxpy-1.1.7-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "446cc639963591429339a24de1595505", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.5", "size": 816163, "upload_time": "2020-12-31T19:44:46", "upload_time_iso_8601": "2020-12-31T19:44:46.074401Z", "url": "https://files.pythonhosted.org/packages/7f/15/b8f71fcdda521d1f9c30a847768211f73c2044788d304289c7a5ddc27f5d/cvxpy-1.1.7-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6db32672a0e1f98fc3572eaa4b009a59", "sha256": "53dee27264455368db873854db4eca9adb57b6cd783ccf1d47741f147e9d1f64" }, "downloads": -1, "filename": "cvxpy-1.1.7-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6db32672a0e1f98fc3572eaa4b009a59", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.5", "size": 815668, "upload_time": "2020-12-31T19:48:08", "upload_time_iso_8601": "2020-12-31T19:48:08.352852Z", "url": "https://files.pythonhosted.org/packages/8b/1f/7ad18737477ed3a3fc3a57ec3171559337f530a3aba6daf4502390e1dc6c/cvxpy-1.1.7-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9bf977a53f3007a0d8c3a4281f9f84e", "sha256": "9d4cf4fbfb95bf4036553ac460a939e2b30c03c986bcbd69ceebb6ea61c12b86" }, "downloads": -1, "filename": "cvxpy-1.1.7-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "e9bf977a53f3007a0d8c3a4281f9f84e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.5", "size": 817117, "upload_time": "2020-12-31T19:50:47", "upload_time_iso_8601": "2020-12-31T19:50:47.702470Z", "url": "https://files.pythonhosted.org/packages/89/1b/dd8124ee0daa3e590d735973ac89c2be7139c5333aea36dfe256bd9d1771/cvxpy-1.1.7-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "249710e4bf3da9df88050165ed61c30f", "sha256": "2bbd7377aa56352923889a83feb1c4ec2f68c862c556b96e7f0471fa63123a86" }, "downloads": -1, "filename": "cvxpy-1.1.7-py3.5-win-amd64.egg", "has_sig": false, "md5_digest": "249710e4bf3da9df88050165ed61c30f", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": ">=3.5", "size": 1613650, "upload_time": "2020-10-22T20:03:50", "upload_time_iso_8601": "2020-10-22T20:03:50.258855Z", "url": "https://files.pythonhosted.org/packages/a3/ac/7554f11a22b6876f5364de61a3b17af9ad7ba30427cdd4e792668c2eb970/cvxpy-1.1.7-py3.5-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f77cc9af744eb562912cf90a45bcb5de", "sha256": "4247938236794c3c5c34cf26b11869dc15404cfe951b1f4080e9d510fcf81182" }, "downloads": -1, "filename": "cvxpy-1.1.7-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "f77cc9af744eb562912cf90a45bcb5de", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1593150, "upload_time": "2020-10-22T20:14:30", "upload_time_iso_8601": "2020-10-22T20:14:30.771100Z", "url": "https://files.pythonhosted.org/packages/ad/5a/1df7291440dfc0f41bdef56e3a68080f834f6504e39c10a379da93197e13/cvxpy-1.1.7-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecf9a747126ddcaf1f8797f1e5771d4d", "sha256": "ae67a06616bf19bf0ee02732b2d7a47fe4a265cbcd56fb500107eba712281440" }, "downloads": -1, "filename": "cvxpy-1.1.7-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "ecf9a747126ddcaf1f8797f1e5771d4d", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1592752, "upload_time": "2020-10-22T20:25:11", "upload_time_iso_8601": "2020-10-22T20:25:11.150784Z", "url": "https://files.pythonhosted.org/packages/53/89/a6d06195acf34998da8f09a27236b635b7307cfe8d089cb5edfeda686f8a/cvxpy-1.1.7-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4249d0837219094719f1a35884f7e991", "sha256": "6b2d01c12c9544d17439238ac51eb568e31bc99717f53429b7c4099cd5e46730" }, "downloads": -1, "filename": "cvxpy-1.1.7-py3.8-win-amd64.egg", "has_sig": false, "md5_digest": "4249d0837219094719f1a35884f7e991", "packagetype": "bdist_egg", "python_version": "3.8", "requires_python": ">=3.5", "size": 1633594, "upload_time": "2020-12-31T19:44:47", "upload_time_iso_8601": "2020-12-31T19:44:47.261980Z", "url": "https://files.pythonhosted.org/packages/19/20/3cd64dba335f4f18e1813ff2d4f73d9704aaddc894e7bde7bdcf386eaca9/cvxpy-1.1.7-py3.8-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "302e3f3653780b7704f39b9aa83c1902", "sha256": "f1c839762efe3b2c4a1fb1030cc8addefd4154c1a83ccd29b4b81313714e0747" }, "downloads": -1, "filename": "cvxpy-1.1.7-py3.9-win-amd64.egg", "has_sig": false, "md5_digest": "302e3f3653780b7704f39b9aa83c1902", "packagetype": "bdist_egg", "python_version": "3.9", "requires_python": ">=3.5", "size": 1635120, "upload_time": "2020-12-31T19:50:48", "upload_time_iso_8601": "2020-12-31T19:50:48.951159Z", "url": "https://files.pythonhosted.org/packages/5c/8f/c0ac869e1666da5ce9c3396aef0d4a79b06f0fb70be63b84b6503c0f61d9/cvxpy-1.1.7-py3.9-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4da88bad10262ff5cd394e9faf634e1", "sha256": "330eb76e8369c360b68d9231c6eb350848e373b5952134f9bfebaed1a4c4211f" }, "downloads": -1, "filename": "cvxpy-1.1.7.tar.gz", "has_sig": false, "md5_digest": "e4da88bad10262ff5cd394e9faf634e1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 1005861, "upload_time": "2020-10-22T19:57:59", "upload_time_iso_8601": "2020-10-22T19:57:59.545173Z", "url": "https://files.pythonhosted.org/packages/66/f8/a0990f6d6df5872f9d2cc62dd102242e05f7204b2f1ddf2e504fefeb9e25/cvxpy-1.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "304bc5824caf52cb0914d221645aa6ea", "sha256": "1abff2d225a44ea840d141a90289b82f462ae585deb56708d262028019eb9237" }, "downloads": -1, "filename": "cvxpy-1.1.8-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "304bc5824caf52cb0914d221645aa6ea", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 792657, "upload_time": "2021-02-03T00:42:20", "upload_time_iso_8601": "2021-02-03T00:42:20.216615Z", "url": "https://files.pythonhosted.org/packages/b1/62/12502e0f923c5a4240db333b0abb979e503352a49d82894613e275944a8e/cvxpy-1.1.8-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2cb4924d7145f6eba3b058c2cbb20b61", "sha256": "42fa1863207a34243243f41bdc7716052b2045a318a89562c7b9a09f80a7370c" }, "downloads": -1, "filename": "cvxpy-1.1.8-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2cb4924d7145f6eba3b058c2cbb20b61", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 845430, "upload_time": "2021-02-03T01:58:38", "upload_time_iso_8601": "2021-02-03T01:58:38.915409Z", "url": "https://files.pythonhosted.org/packages/f5/9e/1b4715df3df6a6c00e250202908190434a6490f36525eb8594c72fcfb185/cvxpy-1.1.8-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2cb17df9018413c3bd301525478bd194", "sha256": "a6e8ff8b79647888040afef90d47acebbb6f117c98217a17d915381bce104ed5" }, "downloads": -1, "filename": "cvxpy-1.1.8-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2cb17df9018413c3bd301525478bd194", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 818470, "upload_time": "2021-02-03T00:47:29", "upload_time_iso_8601": "2021-02-03T00:47:29.631262Z", "url": "https://files.pythonhosted.org/packages/5f/1b/8d9115f990ad9c4768f2c44c0e15cfd9a6230b81cde4f90672c4675f1c9a/cvxpy-1.1.8-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7f60d733af4a0f7999c1f3eab09cadf", "sha256": "f3145587e1bc8ca01222f62373e6bf82dae3687ca698ec13c0596621fe483f33" }, "downloads": -1, "filename": "cvxpy-1.1.8-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b7f60d733af4a0f7999c1f3eab09cadf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.5", "size": 845823, "upload_time": "2021-02-03T02:08:24", "upload_time_iso_8601": "2021-02-03T02:08:24.601064Z", "url": "https://files.pythonhosted.org/packages/e8/47/9224edc86098bc7b982ff76b89f8b87a936ff427edad445c4b2d56c48e16/cvxpy-1.1.8-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8b9e50f084bc66d89421a5f3591ecf8", "sha256": "963dd8bba79060ced71586d957958c28526677fe049dbc2814f0afbe5e883b22" }, "downloads": -1, "filename": "cvxpy-1.1.8-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "f8b9e50f084bc66d89421a5f3591ecf8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.5", "size": 824829, "upload_time": "2021-02-03T00:53:09", "upload_time_iso_8601": "2021-02-03T00:53:09.536283Z", "url": "https://files.pythonhosted.org/packages/29/f6/2ef1f83aee60b4afb93b384c1fe2ca3296b02410da881aeb8b8a19d43bfe/cvxpy-1.1.8-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95206c1be88744476d0da21e9f85cc85", "sha256": "26032ee6bdc3ff1bcda7be8b85172960b20116a853d5836d01cc118abf57cb31" }, "downloads": -1, "filename": "cvxpy-1.1.8-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "95206c1be88744476d0da21e9f85cc85", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.5", "size": 824333, "upload_time": "2021-02-03T02:16:28", "upload_time_iso_8601": "2021-02-03T02:16:28.411672Z", "url": "https://files.pythonhosted.org/packages/1b/de/8eaad501b7fc2658ed176beb692a5cdeed04565e7550dfad611b79bac73d/cvxpy-1.1.8-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "219b4112beb74f8a41fe4ff2c0aa648f", "sha256": "9ba46612761bbafffcec1dae4b1a86bbf22b29e2479770ef2dc3465140f07a5e" }, "downloads": -1, "filename": "cvxpy-1.1.8-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "219b4112beb74f8a41fe4ff2c0aa648f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.5", "size": 825780, "upload_time": "2021-02-03T00:58:25", "upload_time_iso_8601": "2021-02-03T00:58:25.930299Z", "url": "https://files.pythonhosted.org/packages/f3/2b/2a3c887a791569a8023494d5fb4e16509c2bcb81d519dde8eaf934db453e/cvxpy-1.1.8-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ceed98f1b21aee68853ad6ac58eed794", "sha256": "e786d75f1fa99d25828ca55ad09cf7d10ef4519754c14a2cbee019ffdbda9d42" }, "downloads": -1, "filename": "cvxpy-1.1.8-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "ceed98f1b21aee68853ad6ac58eed794", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1618308, "upload_time": "2021-02-03T00:42:21", "upload_time_iso_8601": "2021-02-03T00:42:21.525626Z", "url": "https://files.pythonhosted.org/packages/df/bd/445784d0a6a259e5f1fe58a8b9e1cd2c8e5b956885a37991c0e152792b2b/cvxpy-1.1.8-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc45badbe733d1584df80e3c568f40e0", "sha256": "9cd77992c3bbc711b5d8b363ea347a6217954574b11ddbc9cdd420a6d4c3e6cb" }, "downloads": -1, "filename": "cvxpy-1.1.8-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "fc45badbe733d1584df80e3c568f40e0", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1644636, "upload_time": "2021-02-03T00:47:30", "upload_time_iso_8601": "2021-02-03T00:47:30.856421Z", "url": "https://files.pythonhosted.org/packages/39/92/76e49e545249ceaa88cb98b16c97686e38f8dc95cd2eab8964c05e23e414/cvxpy-1.1.8-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0e14ba26af74c0060282497f5d00872", "sha256": "d997e713ff87970ec71b4ab25eb8656540211d1565e65f4c0c08f9b4a387e759" }, "downloads": -1, "filename": "cvxpy-1.1.8-py3.8-win-amd64.egg", "has_sig": false, "md5_digest": "b0e14ba26af74c0060282497f5d00872", "packagetype": "bdist_egg", "python_version": "3.8", "requires_python": ">=3.5", "size": 1655203, "upload_time": "2021-02-03T00:53:10", "upload_time_iso_8601": "2021-02-03T00:53:10.952799Z", "url": "https://files.pythonhosted.org/packages/ed/b8/eb7ef4048af55e2edcc23910457fb22bd747590325df2d5120b55e2099f0/cvxpy-1.1.8-py3.8-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "681d5ec4905e4d2d3a0e30ed1968ab7b", "sha256": "3d425cff7ed0a82b5227b32b01013618c6eb57a612fad7aec7a844e595cce49d" }, "downloads": -1, "filename": "cvxpy-1.1.8-py3.9-win-amd64.egg", "has_sig": false, "md5_digest": "681d5ec4905e4d2d3a0e30ed1968ab7b", "packagetype": "bdist_egg", "python_version": "3.9", "requires_python": ">=3.5", "size": 1656096, "upload_time": "2021-02-03T00:58:27", "upload_time_iso_8601": "2021-02-03T00:58:27.378577Z", "url": "https://files.pythonhosted.org/packages/ee/1d/93ccd89619ceaf319d14c312a0fe749ec0336874e12fd5ec9cd0ddbecb17/cvxpy-1.1.8-py3.9-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33912cc2d06ecebf1da63a0607dc6e78", "sha256": "444068d4eda9ffcd43578895174489d4cef36b28ba7ae8a96ab9ef9571d2b4ff" }, "downloads": -1, "filename": "cvxpy-1.1.8.tar.gz", "has_sig": false, "md5_digest": "33912cc2d06ecebf1da63a0607dc6e78", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 1035605, "upload_time": "2021-02-03T02:07:52", "upload_time_iso_8601": "2021-02-03T02:07:52.098734Z", "url": "https://files.pythonhosted.org/packages/e6/3b/6a6650ed48503c4e4b2f497ce40517fe427f3cfacfc8fb43ff52f89bc4c8/cvxpy-1.1.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "f92d3ba84b021d1e4ca63631dec4c900", "sha256": "39fc25a916bfb542732960c30f8dbfcecf1803aa3c3b27c4ec5d03faab31744f" }, "downloads": -1, "filename": "cvxpy-1.1.9-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f92d3ba84b021d1e4ca63631dec4c900", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5", "size": 792508, "upload_time": "2021-02-06T21:40:10", "upload_time_iso_8601": "2021-02-06T21:40:10.374731Z", "url": "https://files.pythonhosted.org/packages/dd/ee/b493cb62d7c1f7d210e84849cfa3734a01ea3ca223c2bf6fa4b56e1b6206/cvxpy-1.1.9-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03efd949a5536579c65808b8d2dea0fd", "sha256": "5f95d9d93267d51443c1ca8f3b9277acbcdf237db123dee0da98f3c0a82fddd2" }, "downloads": -1, "filename": "cvxpy-1.1.9-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "03efd949a5536579c65808b8d2dea0fd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 845281, "upload_time": "2021-02-06T21:53:18", "upload_time_iso_8601": "2021-02-06T21:53:18.885127Z", "url": "https://files.pythonhosted.org/packages/4a/66/00541ccaad0095fa4819c8d641cab240d566f0a386bef220c45b62259ad6/cvxpy-1.1.9-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d6630b43ae96aaccab089835b6da3af", "sha256": "fc80574d0dc13f6a2d16a42047e218db1e94ffc027816f5e674a541bcb64ac47" }, "downloads": -1, "filename": "cvxpy-1.1.9-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0d6630b43ae96aaccab089835b6da3af", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5", "size": 818322, "upload_time": "2021-02-06T21:45:21", "upload_time_iso_8601": "2021-02-06T21:45:21.598021Z", "url": "https://files.pythonhosted.org/packages/b4/dc/3d424ddea81a802e85ecd4e7a3de4d98110cbc15478bd120ba6ec79271cd/cvxpy-1.1.9-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66bf2a7a43f3d60963cd23169eaf7d51", "sha256": "834855c7acf8f0b3416c59044767793ffab52eeaf263b5cd1596da7fae001b9b" }, "downloads": -1, "filename": "cvxpy-1.1.9-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "66bf2a7a43f3d60963cd23169eaf7d51", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.5", "size": 845675, "upload_time": "2021-02-06T21:59:04", "upload_time_iso_8601": "2021-02-06T21:59:04.742853Z", "url": "https://files.pythonhosted.org/packages/cc/2a/552d00cdedf8cd7cfd45c173ded07c7c3759aa2802a41afab121abe8ccd4/cvxpy-1.1.9-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b629ecef194091c3b95519b24fbf8343", "sha256": "3a5f7a12cbf46ae353df9a0b845b1d8307323e96c36ed633c4c0e4c3cf1abac1" }, "downloads": -1, "filename": "cvxpy-1.1.9-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "b629ecef194091c3b95519b24fbf8343", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.5", "size": 824679, "upload_time": "2021-02-06T21:50:35", "upload_time_iso_8601": "2021-02-06T21:50:35.305963Z", "url": "https://files.pythonhosted.org/packages/97/ac/529c581784ff0c4a665640c80783cf0408f401e6454c1761b11472ec3151/cvxpy-1.1.9-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d930af00c9a7b58004c886d9d0b04f99", "sha256": "3a9a5f805a9ad795474b77a1910e477304d7b7594bc5261c9115dec99181e0a7" }, "downloads": -1, "filename": "cvxpy-1.1.9-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d930af00c9a7b58004c886d9d0b04f99", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.5", "size": 824184, "upload_time": "2021-02-06T22:01:22", "upload_time_iso_8601": "2021-02-06T22:01:22.060000Z", "url": "https://files.pythonhosted.org/packages/2b/41/be311ad11e33e33dd99d0b4d84af98cdd86267f73eb40471ab54a9cce458/cvxpy-1.1.9-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6cb6281ebfbb3b559c6470519d964f8c", "sha256": "a49e70056ed0d448379997190165f06381cf005dfbfe88d4283a0095b2f37374" }, "downloads": -1, "filename": "cvxpy-1.1.9-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "6cb6281ebfbb3b559c6470519d964f8c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.5", "size": 825629, "upload_time": "2021-02-06T21:56:02", "upload_time_iso_8601": "2021-02-06T21:56:02.104469Z", "url": "https://files.pythonhosted.org/packages/82/c3/e07e0cfdea254162e2d4e1c84b70bde5ae54f0654695eae05dca4591dc5a/cvxpy-1.1.9-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a627877cce5a4806ac60a688515c87df", "sha256": "c9db9e5ffbe0dafa743f8039cb909049a4d2a567f76e08facd76fb44c7ab344c" }, "downloads": -1, "filename": "cvxpy-1.1.9-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "a627877cce5a4806ac60a688515c87df", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 1617948, "upload_time": "2021-02-06T21:40:11", "upload_time_iso_8601": "2021-02-06T21:40:11.874719Z", "url": "https://files.pythonhosted.org/packages/9e/06/e37769f86909109e489fe6ee04ba4c6547100d1a09ba40391c25dfc7fdf4/cvxpy-1.1.9-py3.6-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c8f6a4a322e2ff010510b56a870cc18", "sha256": "f848ac1b76f31e9ba05a09c679feb4994e299efcd328fc23ee0572c11e11656d" }, "downloads": -1, "filename": "cvxpy-1.1.9-py3.7-win-amd64.egg", "has_sig": false, "md5_digest": "1c8f6a4a322e2ff010510b56a870cc18", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.5", "size": 1644144, "upload_time": "2021-02-06T21:45:22", "upload_time_iso_8601": "2021-02-06T21:45:22.681658Z", "url": "https://files.pythonhosted.org/packages/02/8b/4728600f4fea27330ba58d58551b142555421460ab54b363c7529f19e6c5/cvxpy-1.1.9-py3.7-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aba7aa38a111902d394150715460256f", "sha256": "474725343342e991dd3463ca2c2a82045badb47200558c31af436ee91accc641" }, "downloads": -1, "filename": "cvxpy-1.1.9-py3.8-win-amd64.egg", "has_sig": false, "md5_digest": "aba7aa38a111902d394150715460256f", "packagetype": "bdist_egg", "python_version": "3.8", "requires_python": ">=3.5", "size": 1653769, "upload_time": "2021-02-06T21:50:36", "upload_time_iso_8601": "2021-02-06T21:50:36.511199Z", "url": "https://files.pythonhosted.org/packages/50/c5/41d8206922a34c270b6ebec1d94f454ed9d629b4109a938ecb23dc434934/cvxpy-1.1.9-py3.8-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46a3a8d78ea09e1096e0902a98b4e691", "sha256": "1cc5d98b1dce232747ded9470d7a94f165681a468017880052f4f569fd030df9" }, "downloads": -1, "filename": "cvxpy-1.1.9-py3.9-win-amd64.egg", "has_sig": false, "md5_digest": "46a3a8d78ea09e1096e0902a98b4e691", "packagetype": "bdist_egg", "python_version": "3.9", "requires_python": ">=3.5", "size": 1655356, "upload_time": "2021-02-06T21:56:03", "upload_time_iso_8601": "2021-02-06T21:56:03.305935Z", "url": "https://files.pythonhosted.org/packages/3f/fd/a995c8ac0bc00377970f7a5569e4e19fe8a07706963f9d96f3bf8909278b/cvxpy-1.1.9-py3.9-win-amd64.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8aebfcf6f42b1cbeb153406e33d8afb6", "sha256": "d002bccd263e567b19f4f32d293b5a013bd3ff8ad91fdbc3470fcd7d9ca24384" }, "downloads": -1, "filename": "cvxpy-1.1.9.tar.gz", "has_sig": false, "md5_digest": "8aebfcf6f42b1cbeb153406e33d8afb6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 1035428, "upload_time": "2021-02-06T21:58:29", "upload_time_iso_8601": "2021-02-06T21:58:29.606226Z", "url": "https://files.pythonhosted.org/packages/6b/ef/0269a6e61fe5dc1596ca9b3a856434c6a3a8667c0ed20dc2f664b0edab9f/cvxpy-1.1.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "b510befced8f5230022b71a9eb148133", "sha256": "4e48f7fc556b6a70d26a23b7148d09787faee092e4fcf683ad8b293b1fcd8595" }, "downloads": -1, "filename": "cvxpy-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b510befced8f5230022b71a9eb148133", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 880179, "upload_time": "2022-03-09T02:35:14", "upload_time_iso_8601": "2022-03-09T02:35:14.209235Z", "url": "https://files.pythonhosted.org/packages/09/b4/a689aaff7bf118dd4cb24c754a3ae7a9aced0e11cca344b09f0712213eed/cvxpy-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c0d17aa568a1aef8009aad879d6c74e", "sha256": "4a4af390340c7746b074a0f88dc01b2273c0005f76324b2ea1c751bf174186f2" }, "downloads": -1, "filename": "cvxpy-1.2.0-cp310-cp310-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "4c0d17aa568a1aef8009aad879d6c74e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 2758775, "upload_time": "2022-03-09T02:17:50", "upload_time_iso_8601": "2022-03-09T02:17:50.065214Z", "url": "https://files.pythonhosted.org/packages/22/31/8e059c1a314aa33317b9d65d30c2d2ba0b0204ffdd7a6af044db4fe5101e/cvxpy-1.2.0-cp310-cp310-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66b47872b68a31699733c560d0806de5", "sha256": "2d9e3c6ab351d1b660f7a7a5663e3484495d47fa907c353f96efffd6a4811e24" }, "downloads": -1, "filename": "cvxpy-1.2.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "66b47872b68a31699733c560d0806de5", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 832862, "upload_time": "2022-03-09T02:19:24", "upload_time_iso_8601": "2022-03-09T02:19:24.726652Z", "url": "https://files.pythonhosted.org/packages/3f/b5/ae11f4085dcac963026205e105978c76ec2a1c202836e56907b019c17328/cvxpy-1.2.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f1c05296cbe06477f7f8abe73852903", "sha256": "56e2485d8c3916810f2bce0d4e242e4f0bab90a7d1830944d3951285e7c1a84c" }, "downloads": -1, "filename": "cvxpy-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1f1c05296cbe06477f7f8abe73852903", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 879800, "upload_time": "2022-03-09T02:33:20", "upload_time_iso_8601": "2022-03-09T02:33:20.982815Z", "url": "https://files.pythonhosted.org/packages/e2/57/07ef8e670a22fb7a76d5b862396849f16fa9ba6987656a7e619f5a6d0190/cvxpy-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "875fa1231e586aaf4c340f4934020546", "sha256": "6dd8bdee5db45d8ef59be2b214761224adba458612c5a81d7221e5ca19129606" }, "downloads": -1, "filename": "cvxpy-1.2.0-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "875fa1231e586aaf4c340f4934020546", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 2777221, "upload_time": "2022-03-09T02:17:51", "upload_time_iso_8601": "2022-03-09T02:17:51.216935Z", "url": "https://files.pythonhosted.org/packages/d1/f9/801836e6ea2742e3b5cb2b946bc7b02c03c37074a3e0757bd451e5f5f272/cvxpy-1.2.0-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c75d86e40db7116a767d08e21d81d62", "sha256": "d8a3a3f8c5a8656287d4f56928d5e8844d05c596ff180bb6811719328fbf2b65" }, "downloads": -1, "filename": "cvxpy-1.2.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6c75d86e40db7116a767d08e21d81d62", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 832737, "upload_time": "2022-03-09T02:19:11", "upload_time_iso_8601": "2022-03-09T02:19:11.968695Z", "url": "https://files.pythonhosted.org/packages/7b/ba/e43ccb6ad729cbb7b7ebfe243c0f8143fd9fbbc7411c3a829d2b0080ecd4/cvxpy-1.2.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94028afa560358dc87bb15eada630219", "sha256": "686768365a13d108bb3f6e05b61cec5336a3503a5766165a9fb14b77203c5ed0" }, "downloads": -1, "filename": "cvxpy-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "94028afa560358dc87bb15eada630219", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 880595, "upload_time": "2022-03-09T02:38:42", "upload_time_iso_8601": "2022-03-09T02:38:42.884863Z", "url": "https://files.pythonhosted.org/packages/72/bb/de9629297aa8641be122f6558ac611756c052563e168fa88861761abb621/cvxpy-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc72fc7492f2020cfcbb126659995e70", "sha256": "5eb9493d4c563e78ce1a47e6141207a55660a97a1ec2a82d8042433dd1e19fca" }, "downloads": -1, "filename": "cvxpy-1.2.0-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "fc72fc7492f2020cfcbb126659995e70", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 2761908, "upload_time": "2022-03-09T02:19:48", "upload_time_iso_8601": "2022-03-09T02:19:48.333363Z", "url": "https://files.pythonhosted.org/packages/54/2c/8f6b0c6a7f88838d2a06fad591131a53d9afd46253bd6dba95541f4cad0c/cvxpy-1.2.0-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f154bf4d603f6acb4eed98cacd61b876", "sha256": "addee6fd27d273c343f0a654a6cea5c8e47ceaf7261ccd7817ce7c56cec73150" }, "downloads": -1, "filename": "cvxpy-1.2.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "f154bf4d603f6acb4eed98cacd61b876", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 832888, "upload_time": "2022-03-09T02:22:12", "upload_time_iso_8601": "2022-03-09T02:22:12.568923Z", "url": "https://files.pythonhosted.org/packages/f9/09/b57c7738e84747e4cc17a8d0ea356043fcac1bad82b4c5f950b2297900ad/cvxpy-1.2.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb284e04cc3b9a4c50522b8b3fdb13e1", "sha256": "33d526f5591cbd305d20c0ae6649763ef8ccb1df93db373bd22bb6a86c8259e5" }, "downloads": -1, "filename": "cvxpy-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bb284e04cc3b9a4c50522b8b3fdb13e1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 880173, "upload_time": "2022-03-09T02:37:37", "upload_time_iso_8601": "2022-03-09T02:37:37.119733Z", "url": "https://files.pythonhosted.org/packages/5e/16/118874f95cddf538883bf7cf558fb08cadc6aa5a700753e9da373056b7a1/cvxpy-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "edafd4e2e578dfa0afc7c0349f97f665", "sha256": "ada9b935ea0fbdab5072c7e925560250e400f00a614b28b5432bc9752230fd18" }, "downloads": -1, "filename": "cvxpy-1.2.0-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "edafd4e2e578dfa0afc7c0349f97f665", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 2757870, "upload_time": "2022-03-09T02:17:57", "upload_time_iso_8601": "2022-03-09T02:17:57.648114Z", "url": "https://files.pythonhosted.org/packages/14/c0/5c0a51ac2505d83d3fb39e3e1fb9d223df2c80e5dca100ad6d3e61a5b98c/cvxpy-1.2.0-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e209ac4c3d563bfbee7aa8f7dca717c5", "sha256": "b83e1d8d91503842306ba8e72bec65a26663fd661b215c42c14117bc12e689df" }, "downloads": -1, "filename": "cvxpy-1.2.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "e209ac4c3d563bfbee7aa8f7dca717c5", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 832857, "upload_time": "2022-03-09T02:20:50", "upload_time_iso_8601": "2022-03-09T02:20:50.925525Z", "url": "https://files.pythonhosted.org/packages/cf/6e/57e1780376e137f91d37bdbef6958310d51ec959839083a194e230a69b56/cvxpy-1.2.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d6b3822fb8cf408dd0eb23a0d40ce59", "sha256": "414466fde849a2faabfd9444ec82ca2e7bf142c01d7237524cf9730adeb4201c" }, "downloads": -1, "filename": "cvxpy-1.2.0.tar.gz", "has_sig": false, "md5_digest": "8d6b3822fb8cf408dd0eb23a0d40ce59", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 1285916, "upload_time": "2022-03-09T02:38:44", "upload_time_iso_8601": "2022-03-09T02:38:44.234980Z", "url": "https://files.pythonhosted.org/packages/df/9d/0e33aeadb561a10665cf06bdaea3625c697b5a3fc27c2d848b602aa1773a/cvxpy-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "071aefbb77beeb335c3332fc8682ce2d", "sha256": "4e081576a625255bd3949d8d7f751a5d0175b2db512673e0ebc19fcabdfdb60a" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "071aefbb77beeb335c3332fc8682ce2d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 880567, "upload_time": "2022-05-16T18:53:28", "upload_time_iso_8601": "2022-05-16T18:53:28.688074Z", "url": "https://files.pythonhosted.org/packages/bb/7a/7f92d14973462ad1f6de323cd7805e6d50eca8e5812ca0e91a1055ce9c38/cvxpy-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1de6e0da4f098cf84b89632e5915cdec", "sha256": "55b1cdbfb7fb7eba53077b5154d5287e8a0d31404eb342737eb1db360a265eef" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp310-cp310-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "1de6e0da4f098cf84b89632e5915cdec", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 2759178, "upload_time": "2022-05-16T18:40:15", "upload_time_iso_8601": "2022-05-16T18:40:15.943905Z", "url": "https://files.pythonhosted.org/packages/c9/d6/879d11177a4f6146f4c76c940d9845962267556678e11b280d0d440f967d/cvxpy-1.2.1-cp310-cp310-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e80a1a77b12d25d0b31ba95185fef357", "sha256": "0da15d10459908d1964cf2f35c706a99150ab22a1243d98796943d7daa43aa95" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "e80a1a77b12d25d0b31ba95185fef357", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 833219, "upload_time": "2022-05-16T18:41:58", "upload_time_iso_8601": "2022-05-16T18:41:58.001947Z", "url": "https://files.pythonhosted.org/packages/97/0a/f8a425c31959562137704efa42872684427b7e39aeeb2afce18f31d0ccc6/cvxpy-1.2.1-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc9d4e07f58cc19223a7110bf7d09672", "sha256": "8d51712e1f5cee68de1068a28d72d4ca855acae7162ded3872fa7bd46b9051d3" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bc9d4e07f58cc19223a7110bf7d09672", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 880178, "upload_time": "2022-05-16T18:51:37", "upload_time_iso_8601": "2022-05-16T18:51:37.502057Z", "url": "https://files.pythonhosted.org/packages/85/22/e3c9d2cfbebe02de308423258d6c2ef09b56df7d1cebd09f1fcd7ab20e44/cvxpy-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dfd2fd80aa6cd5fc7816fa72c944ab1", "sha256": "94ad386214e8b92b990caa2e3367cf503b03c0ded8ba4d3a4b916fe310bac97f" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "8dfd2fd80aa6cd5fc7816fa72c944ab1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 2777626, "upload_time": "2022-05-16T18:40:18", "upload_time_iso_8601": "2022-05-16T18:40:18.468430Z", "url": "https://files.pythonhosted.org/packages/a5/ba/6ee100a162ef030336a209f09472f33dc3670b9ee2a4cd24bc9a912902e4/cvxpy-1.2.1-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2a8aea78e0aa2e4c0d5aa3731a75b6b", "sha256": "21efdff59d3128b23c18f1a0c82bc8cf177ac40de0c10aece4e7536c4b942abe" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b2a8aea78e0aa2e4c0d5aa3731a75b6b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 833147, "upload_time": "2022-05-16T18:43:54", "upload_time_iso_8601": "2022-05-16T18:43:54.751292Z", "url": "https://files.pythonhosted.org/packages/3b/94/c66a25497eedde7d68d3e1e519825fb4f227ad3193b36b0117aa96dcaa6c/cvxpy-1.2.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6495be332504ebb63b4f20dc0939cc0f", "sha256": "8861a12efa88e626fd932eb5ca8e5b97bc55efaba0a4b580265990ae3b29f323" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6495be332504ebb63b4f20dc0939cc0f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 880987, "upload_time": "2022-05-16T18:55:58", "upload_time_iso_8601": "2022-05-16T18:55:58.241172Z", "url": "https://files.pythonhosted.org/packages/b0/2a/6852116ed0b511786240674f1b845613916f75bbff8886629c8f18181670/cvxpy-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df522520db33cf1b71097e441a63e52e", "sha256": "b6a3d1e5f37c6bb01cbaf1e6574c805499ef60619ca0dcac4927c403c4a6f46c" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "df522520db33cf1b71097e441a63e52e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 2762313, "upload_time": "2022-05-16T18:43:19", "upload_time_iso_8601": "2022-05-16T18:43:19.815619Z", "url": "https://files.pythonhosted.org/packages/ae/f9/78f8093ea1a222715b3a28b65f5a5e7cc3b988231d8625d130d1e7ac9066/cvxpy-1.2.1-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4c0ecb41ea4031780cd0fa9923d13d3", "sha256": "08711eda2b7c371b67450e1e7de98223b4940a89b065e3295777b184b9e9131b" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "d4c0ecb41ea4031780cd0fa9923d13d3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 833242, "upload_time": "2022-05-16T18:43:34", "upload_time_iso_8601": "2022-05-16T18:43:34.405537Z", "url": "https://files.pythonhosted.org/packages/31/fd/aed158c7a3eabdf9268ea894041fc4031fac966e0ad5c4e6d6572aefb6b8/cvxpy-1.2.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "123bd46d6c0b6b424abd015f4d1dd8e8", "sha256": "e0f85757a936905c64f92e84b06e04d0bc9e7b8ab932ebf9b0c7e80949b60160" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "123bd46d6c0b6b424abd015f4d1dd8e8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 880584, "upload_time": "2022-05-16T18:55:53", "upload_time_iso_8601": "2022-05-16T18:55:53.888140Z", "url": "https://files.pythonhosted.org/packages/da/b2/1edbbbc7e403d477d7a9970dce43575914b7b4da19550171072dec5be911/cvxpy-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "640e8d3c770313f110fdba6e3857f699", "sha256": "0ed7e4b4bbcc80a55582e62d5688e2202f33dde3d0fceb23c81373dc6257d745" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "640e8d3c770313f110fdba6e3857f699", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 2758277, "upload_time": "2022-05-16T18:40:16", "upload_time_iso_8601": "2022-05-16T18:40:16.440981Z", "url": "https://files.pythonhosted.org/packages/e8/8c/de25d7e1c4c626fe94322d7eedcc2ecef1ff94c169e73fcfcb92152cbb6f/cvxpy-1.2.1-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f72c3f264bb59922b3f3949cebce8d1f", "sha256": "8df52e9b0817d15814f3cdc7861c65b6f4e5554d90429fe4cfecb7bdd91994cf" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "f72c3f264bb59922b3f3949cebce8d1f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 833173, "upload_time": "2022-05-16T18:44:05", "upload_time_iso_8601": "2022-05-16T18:44:05.122532Z", "url": "https://files.pythonhosted.org/packages/d5/f9/f1eca608ad79708eaa5e71ea324ec7ac1cb430736b26305061b7edb1c3e1/cvxpy-1.2.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "893c1fd38be2b847c389f785555d8f59", "sha256": "6d67642643d1ddb2f2af59b466b87d42c4a2e367831ad7b43c33b59eefa5b50e" }, "downloads": -1, "filename": "cvxpy-1.2.1.tar.gz", "has_sig": false, "md5_digest": "893c1fd38be2b847c389f785555d8f59", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 1286289, "upload_time": "2022-05-16T18:56:00", "upload_time_iso_8601": "2022-05-16T18:56:00.145098Z", "url": "https://files.pythonhosted.org/packages/29/6b/190023bed348a3651a0ccc2e4a5082eb2e7395450673893d5095e3f9fd7e/cvxpy-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "071aefbb77beeb335c3332fc8682ce2d", "sha256": "4e081576a625255bd3949d8d7f751a5d0175b2db512673e0ebc19fcabdfdb60a" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "071aefbb77beeb335c3332fc8682ce2d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 880567, "upload_time": "2022-05-16T18:53:28", "upload_time_iso_8601": "2022-05-16T18:53:28.688074Z", "url": "https://files.pythonhosted.org/packages/bb/7a/7f92d14973462ad1f6de323cd7805e6d50eca8e5812ca0e91a1055ce9c38/cvxpy-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1de6e0da4f098cf84b89632e5915cdec", "sha256": "55b1cdbfb7fb7eba53077b5154d5287e8a0d31404eb342737eb1db360a265eef" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp310-cp310-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "1de6e0da4f098cf84b89632e5915cdec", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 2759178, "upload_time": "2022-05-16T18:40:15", "upload_time_iso_8601": "2022-05-16T18:40:15.943905Z", "url": "https://files.pythonhosted.org/packages/c9/d6/879d11177a4f6146f4c76c940d9845962267556678e11b280d0d440f967d/cvxpy-1.2.1-cp310-cp310-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e80a1a77b12d25d0b31ba95185fef357", "sha256": "0da15d10459908d1964cf2f35c706a99150ab22a1243d98796943d7daa43aa95" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "e80a1a77b12d25d0b31ba95185fef357", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 833219, "upload_time": "2022-05-16T18:41:58", "upload_time_iso_8601": "2022-05-16T18:41:58.001947Z", "url": "https://files.pythonhosted.org/packages/97/0a/f8a425c31959562137704efa42872684427b7e39aeeb2afce18f31d0ccc6/cvxpy-1.2.1-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc9d4e07f58cc19223a7110bf7d09672", "sha256": "8d51712e1f5cee68de1068a28d72d4ca855acae7162ded3872fa7bd46b9051d3" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bc9d4e07f58cc19223a7110bf7d09672", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 880178, "upload_time": "2022-05-16T18:51:37", "upload_time_iso_8601": "2022-05-16T18:51:37.502057Z", "url": "https://files.pythonhosted.org/packages/85/22/e3c9d2cfbebe02de308423258d6c2ef09b56df7d1cebd09f1fcd7ab20e44/cvxpy-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dfd2fd80aa6cd5fc7816fa72c944ab1", "sha256": "94ad386214e8b92b990caa2e3367cf503b03c0ded8ba4d3a4b916fe310bac97f" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "8dfd2fd80aa6cd5fc7816fa72c944ab1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 2777626, "upload_time": "2022-05-16T18:40:18", "upload_time_iso_8601": "2022-05-16T18:40:18.468430Z", "url": "https://files.pythonhosted.org/packages/a5/ba/6ee100a162ef030336a209f09472f33dc3670b9ee2a4cd24bc9a912902e4/cvxpy-1.2.1-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2a8aea78e0aa2e4c0d5aa3731a75b6b", "sha256": "21efdff59d3128b23c18f1a0c82bc8cf177ac40de0c10aece4e7536c4b942abe" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b2a8aea78e0aa2e4c0d5aa3731a75b6b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 833147, "upload_time": "2022-05-16T18:43:54", "upload_time_iso_8601": "2022-05-16T18:43:54.751292Z", "url": "https://files.pythonhosted.org/packages/3b/94/c66a25497eedde7d68d3e1e519825fb4f227ad3193b36b0117aa96dcaa6c/cvxpy-1.2.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6495be332504ebb63b4f20dc0939cc0f", "sha256": "8861a12efa88e626fd932eb5ca8e5b97bc55efaba0a4b580265990ae3b29f323" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6495be332504ebb63b4f20dc0939cc0f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 880987, "upload_time": "2022-05-16T18:55:58", "upload_time_iso_8601": "2022-05-16T18:55:58.241172Z", "url": "https://files.pythonhosted.org/packages/b0/2a/6852116ed0b511786240674f1b845613916f75bbff8886629c8f18181670/cvxpy-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df522520db33cf1b71097e441a63e52e", "sha256": "b6a3d1e5f37c6bb01cbaf1e6574c805499ef60619ca0dcac4927c403c4a6f46c" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "df522520db33cf1b71097e441a63e52e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 2762313, "upload_time": "2022-05-16T18:43:19", "upload_time_iso_8601": "2022-05-16T18:43:19.815619Z", "url": "https://files.pythonhosted.org/packages/ae/f9/78f8093ea1a222715b3a28b65f5a5e7cc3b988231d8625d130d1e7ac9066/cvxpy-1.2.1-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4c0ecb41ea4031780cd0fa9923d13d3", "sha256": "08711eda2b7c371b67450e1e7de98223b4940a89b065e3295777b184b9e9131b" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "d4c0ecb41ea4031780cd0fa9923d13d3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 833242, "upload_time": "2022-05-16T18:43:34", "upload_time_iso_8601": "2022-05-16T18:43:34.405537Z", "url": "https://files.pythonhosted.org/packages/31/fd/aed158c7a3eabdf9268ea894041fc4031fac966e0ad5c4e6d6572aefb6b8/cvxpy-1.2.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "123bd46d6c0b6b424abd015f4d1dd8e8", "sha256": "e0f85757a936905c64f92e84b06e04d0bc9e7b8ab932ebf9b0c7e80949b60160" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "123bd46d6c0b6b424abd015f4d1dd8e8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 880584, "upload_time": "2022-05-16T18:55:53", "upload_time_iso_8601": "2022-05-16T18:55:53.888140Z", "url": "https://files.pythonhosted.org/packages/da/b2/1edbbbc7e403d477d7a9970dce43575914b7b4da19550171072dec5be911/cvxpy-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "640e8d3c770313f110fdba6e3857f699", "sha256": "0ed7e4b4bbcc80a55582e62d5688e2202f33dde3d0fceb23c81373dc6257d745" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "640e8d3c770313f110fdba6e3857f699", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 2758277, "upload_time": "2022-05-16T18:40:16", "upload_time_iso_8601": "2022-05-16T18:40:16.440981Z", "url": "https://files.pythonhosted.org/packages/e8/8c/de25d7e1c4c626fe94322d7eedcc2ecef1ff94c169e73fcfcb92152cbb6f/cvxpy-1.2.1-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f72c3f264bb59922b3f3949cebce8d1f", "sha256": "8df52e9b0817d15814f3cdc7861c65b6f4e5554d90429fe4cfecb7bdd91994cf" }, "downloads": -1, "filename": "cvxpy-1.2.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "f72c3f264bb59922b3f3949cebce8d1f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 833173, "upload_time": "2022-05-16T18:44:05", "upload_time_iso_8601": "2022-05-16T18:44:05.122532Z", "url": "https://files.pythonhosted.org/packages/d5/f9/f1eca608ad79708eaa5e71ea324ec7ac1cb430736b26305061b7edb1c3e1/cvxpy-1.2.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "893c1fd38be2b847c389f785555d8f59", "sha256": "6d67642643d1ddb2f2af59b466b87d42c4a2e367831ad7b43c33b59eefa5b50e" }, "downloads": -1, "filename": "cvxpy-1.2.1.tar.gz", "has_sig": false, "md5_digest": "893c1fd38be2b847c389f785555d8f59", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 1286289, "upload_time": "2022-05-16T18:56:00", "upload_time_iso_8601": "2022-05-16T18:56:00.145098Z", "url": "https://files.pythonhosted.org/packages/29/6b/190023bed348a3651a0ccc2e4a5082eb2e7395450673893d5095e3f9fd7e/cvxpy-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }