ecos


Nameecos JSON
Version 2.0.13 PyPI version JSON
download
home_pagehttp://github.com/embotech/ecos
SummaryThis is the Python package for ECOS: Embedded Cone Solver. See Github page for more information.
upload_time2024-02-07 00:03:05
maintainer
docs_urlNone
authorAlexander Domahidi, Eric Chu, Han Wang, Santiago Akle
requires_python
licenseGPLv3
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            # Python Wrapper for Embedded Conic Solver (ECOS)

[![Build Status](http://github.com/embotech/ecos-python/workflows/build/badge.svg?event=push)](https://github.com/embotech/ecos-python/actions/workflows/build.yml)


**Visit www.embotech.com/ECOS for detailed information on ECOS.**

ECOS is a numerical software for solving convex second-order cone
programs (SOCPs) of type
```
min  c'*x
s.t. A*x = b
     G*x <=_K h
```
where the last inequality is generalized, i.e. `h - G*x` belongs to the
cone `K`. ECOS supports the positive orthant `R_+` and second-order
cones `Q_n` defined as
```
Q_n = { (t,x) | t >= || x ||_2 }
```
In the definition above, t is a scalar and `x` is in `R_{n-1}`. The cone
`K` is therefore a direct product of the positive orthant and
second-order cones:
```
K = R_+ x Q_n1 x ... x Q_nN
```

## Installation
The latest version of ECOS is available via `pip`:

    pip install ecos

This will download the relevant wheel for your machine.

### Building from source
If you are attempting to build the Python extension from source, then
use

    make install

This will use the latest tag on git to version your local installation
of ECOS.

You will need [Numpy](http://www.numpy.org/)
and [Scipy](http://www.scipy.org/). For installation instructions, see
their respective pages.

You may need `sudo` privileges for a global installation.

### Windows users
Windows users may experience some extreme pain when installing ECOS from
source for Python 2.7. We suggest switching to Linux or Mac OSX.

If you must use (or insist on using) Windows, we suggest using
the [Miniconda](http://repo.continuum.io/miniconda/)
distribution to minimize this pain.

If during the installation process, you see the error message
`Unable to find vcvarsall.bat`, you will need to install
[Microsoft Visual Studio Express 2008](go.microsoft.com/?linkid=7729279),
since *Python 2.7* is built against the 2008 compiler.

If using a newer version of Python, you can use a newer version of
Visual Studio. For instance, Python 3.3 is built against [Visual Studio
2010](http://go.microsoft.com/?linkid=9709949).

## Calling ECOS from Python

After installing the ECOS interface, you must import the module with
```
import ecos
```
This module provides a single function `ecos` with one of the following calling sequences:
```
solution = ecos.solve(c,G,h,dims)
solution = ecos.solve(c,G,h,dims,A,b,**kwargs)
```
The arguments `c`, `h`, and `b` are Numpy arrays (i.e., matrices with a single
column).  The arguments `G` and `A` are Scipy *sparse* matrices in CSR format;
if they are not of the proper format, ECOS will attempt to convert them.  The
argument `dims` is a dictionary with two fields, `dims['l']` and `dims['q']`.
These are the same fields as in the Matlab case. If the fields are omitted or
empty, they default to 0.
The argument `kwargs` can include the keywords
+ `feastol`, `abstol`, `reltol`, `feastol_inacc`, `abstol_innac`, and `reltol_inacc` for tolerance values,
+ `max_iters` for the maximum number of iterations,
+ the Booleans `verbose` and `mi_verbose`,
+ `bool_vars_idx`, a list of `int`s which index the boolean variables,
+ `int_vars_idx`, a list of `int`s which index the integer variables,
+ `mi_max_iters` for maximum number of branch and bound iterations (mixed integer problems only),
+ `mi_abs_eps` for the absolute tolerance between upper and lower bounds (mixed integer problems only), and
+ `mi_rel_eps` for the relative tolerance, (U-L)/L, between upper and lower bounds (mixed integer problems only).

The arguments `A`, `b`, and `kwargs` are optional.

The returned object is a dictionary containing the fields `solution['x']`, `solution['y']`, `solution['s']`, `solution['z']`, and `solution['info']`.
The first four are Numpy arrays containing the relevant solution. The last field contains a dictionary with the same fields as the `info` struct in the MATLAB interface.

## Using ECOS with CVXPY

[CVXPY](http://cvxpy.org) is a powerful Python modeling framework for
convex optimization, similar to the MATLAB counterpart CVX. ECOS is one
of the default solvers in CVXPY, so there is nothing special you have to
do in order to use ECOS with CVXPY, besides specifying it as a solver.
Here is a small
[example](http://www.cvxpy.org/en/latest/tutorial/advanced/index.html#solve-method-options)
from the CVXPY tutorial:

```py
import cvxpy as cp

# Solving a problem with different solvers.
x = cp.Variable(2)
obj = cp.Minimize(cp.norm(x, 2) + cp.norm(x, 1))
constraints = [x >= 2]
prob = cp.Problem(obj, constraints)

# Solve with ECOS.
prob.solve(solver=cp.ECOS)
print("optimal value with ECOS:", prob.value)
```

## ECOS Versioning
The Python module contains two version numbers:

1. `ecos.__version__`: This is the version of the Python wrapper for
   ECOS
2. `ecos.__solver_version__`: This is the version of the underlying ECOS
   solver

These two version numbers should typically agree, but they might not
when a bug in the Python module has been fixed and nothing in the
underlying C solver has changed. The major version numbers should agree,
however.

### What happened to 2.0.7?
Because version-syncing ECOS and ECOS-Python can be tricky, the 2.0.7
version did not incorporate some minor changes to ECOS. In an
ill-advised move, the release was deleted in hopes it could be
re-uploaded, despite plenty warnings stating otherwise.

Instead, a post release has been made that contains identical content to
the 2.0.7 release. Generally, `pip` should pick up the post release for
2.0.7 and any dependencies such as `pip install "ecos>=2.0.5"` should still
work as expected.

## Deployment
When creating new versions of the Python wrapper, please use
`bumpversion` to bump the version number and also remember to tag the
commit so that CI is able to properly pick it up. See
[Release](RELEASE.md) for more information.

## Python2 Support
Starting with version 2.0.8, ecos-python will no longer support
Python2.7. You may be able to download an [older
version](https://github.com/embotech/ecos-python/releases/tag/2.0.7.post1)
but moving forward we will no longer publish Python2 wheels for use.

## License

ECOS is distributed under the [GNU General Public License
v3.0](http://www.gnu.org/copyleft/gpl.html). Other licenses may be
available upon request from [embotech](http://www.embotech.com).




## Credits

The solver is essentially based on Lieven Vandenberghe's [CVXOPT](http://cvxopt.org) [ConeLP](http://www.ee.ucla.edu/~vandenbe/publications/coneprog.pdf) solver, although it differs in the particular way the linear systems are treated.

The following people have been, and are, involved in the development and maintenance of ECOS:

+ Alexander Domahidi (principal developer)
+ Eric Chu (Python interface, unit tests)
+ Stephen Boyd (methods and maths)
+ Michael Grant (CVX interface)
+ Johan Löfberg (YALMIP interface)
+ João Felipe Santos, Iain Dunning (Julia interface)
+ Han Wang (ECOS branch and bound)

The main technical idea behind ECOS is described in a short [paper](http://www.stanford.edu/~boyd/papers/ecos.html). More details are given in Alexander Domahidi's [PhD Thesis](http://e-collection.library.ethz.ch/view/eth:7611?q=domahidi) in Chapter 9.

If you find ECOS useful, you can cite it using the following BibTex entry:

```
@INPROCEEDINGS{bib:Domahidi2013ecos,
author={Domahidi, A. and Chu, E. and Boyd, S.},
booktitle={European Control Conference (ECC)},
title={{ECOS}: {A}n {SOCP} solver for embedded systems},
year={2013},
pages={3071-3076}
}
```

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/embotech/ecos",
    "name": "ecos",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Alexander Domahidi, Eric Chu, Han Wang, Santiago Akle",
    "author_email": "domahidi@embotech.com, echu@cs.stanford.edu, hanwang2@stanford.edu, tiagoakle@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/4d/26/1494d3da76c1ebecdcb1f3028c77b50a272f07e9d34b8eca981a7b3f6267/ecos-2.0.13.tar.gz",
    "platform": null,
    "description": "# Python Wrapper for Embedded Conic Solver (ECOS)\n\n[![Build Status](http://github.com/embotech/ecos-python/workflows/build/badge.svg?event=push)](https://github.com/embotech/ecos-python/actions/workflows/build.yml)\n\n\n**Visit www.embotech.com/ECOS for detailed information on ECOS.**\n\nECOS is a numerical software for solving convex second-order cone\nprograms (SOCPs) of type\n```\nmin  c'*x\ns.t. A*x = b\n     G*x <=_K h\n```\nwhere the last inequality is generalized, i.e. `h - G*x` belongs to the\ncone `K`. ECOS supports the positive orthant `R_+` and second-order\ncones `Q_n` defined as\n```\nQ_n = { (t,x) | t >= || x ||_2 }\n```\nIn the definition above, t is a scalar and `x` is in `R_{n-1}`. The cone\n`K` is therefore a direct product of the positive orthant and\nsecond-order cones:\n```\nK = R_+ x Q_n1 x ... x Q_nN\n```\n\n## Installation\nThe latest version of ECOS is available via `pip`:\n\n    pip install ecos\n\nThis will download the relevant wheel for your machine.\n\n### Building from source\nIf you are attempting to build the Python extension from source, then\nuse\n\n    make install\n\nThis will use the latest tag on git to version your local installation\nof ECOS.\n\nYou will need [Numpy](http://www.numpy.org/)\nand [Scipy](http://www.scipy.org/). For installation instructions, see\ntheir respective pages.\n\nYou may need `sudo` privileges for a global installation.\n\n### Windows users\nWindows users may experience some extreme pain when installing ECOS from\nsource for Python 2.7. We suggest switching to Linux or Mac OSX.\n\nIf you must use (or insist on using) Windows, we suggest using\nthe [Miniconda](http://repo.continuum.io/miniconda/)\ndistribution to minimize this pain.\n\nIf during the installation process, you see the error message\n`Unable to find vcvarsall.bat`, you will need to install\n[Microsoft Visual Studio Express 2008](go.microsoft.com/?linkid=7729279),\nsince *Python 2.7* is built against the 2008 compiler.\n\nIf using a newer version of Python, you can use a newer version of\nVisual Studio. For instance, Python 3.3 is built against [Visual Studio\n2010](http://go.microsoft.com/?linkid=9709949).\n\n## Calling ECOS from Python\n\nAfter installing the ECOS interface, you must import the module with\n```\nimport ecos\n```\nThis module provides a single function `ecos` with one of the following calling sequences:\n```\nsolution = ecos.solve(c,G,h,dims)\nsolution = ecos.solve(c,G,h,dims,A,b,**kwargs)\n```\nThe arguments `c`, `h`, and `b` are Numpy arrays (i.e., matrices with a single\ncolumn).  The arguments `G` and `A` are Scipy *sparse* matrices in CSR format;\nif they are not of the proper format, ECOS will attempt to convert them.  The\nargument `dims` is a dictionary with two fields, `dims['l']` and `dims['q']`.\nThese are the same fields as in the Matlab case. If the fields are omitted or\nempty, they default to 0.\nThe argument `kwargs` can include the keywords\n+ `feastol`, `abstol`, `reltol`, `feastol_inacc`, `abstol_innac`, and `reltol_inacc` for tolerance values,\n+ `max_iters` for the maximum number of iterations,\n+ the Booleans `verbose` and `mi_verbose`,\n+ `bool_vars_idx`, a list of `int`s which index the boolean variables,\n+ `int_vars_idx`, a list of `int`s which index the integer variables,\n+ `mi_max_iters` for maximum number of branch and bound iterations (mixed integer problems only),\n+ `mi_abs_eps` for the absolute tolerance between upper and lower bounds (mixed integer problems only), and\n+ `mi_rel_eps` for the relative tolerance, (U-L)/L, between upper and lower bounds (mixed integer problems only).\n\nThe arguments `A`, `b`, and `kwargs` are optional.\n\nThe returned object is a dictionary containing the fields `solution['x']`, `solution['y']`, `solution['s']`, `solution['z']`, and `solution['info']`.\nThe first four are Numpy arrays containing the relevant solution. The last field contains a dictionary with the same fields as the `info` struct in the MATLAB interface.\n\n## Using ECOS with CVXPY\n\n[CVXPY](http://cvxpy.org) is a powerful Python modeling framework for\nconvex optimization, similar to the MATLAB counterpart CVX. ECOS is one\nof the default solvers in CVXPY, so there is nothing special you have to\ndo in order to use ECOS with CVXPY, besides specifying it as a solver.\nHere is a small\n[example](http://www.cvxpy.org/en/latest/tutorial/advanced/index.html#solve-method-options)\nfrom the CVXPY tutorial:\n\n```py\nimport cvxpy as cp\n\n# Solving a problem with different solvers.\nx = cp.Variable(2)\nobj = cp.Minimize(cp.norm(x, 2) + cp.norm(x, 1))\nconstraints = [x >= 2]\nprob = cp.Problem(obj, constraints)\n\n# Solve with ECOS.\nprob.solve(solver=cp.ECOS)\nprint(\"optimal value with ECOS:\", prob.value)\n```\n\n## ECOS Versioning\nThe Python module contains two version numbers:\n\n1. `ecos.__version__`: This is the version of the Python wrapper for\n   ECOS\n2. `ecos.__solver_version__`: This is the version of the underlying ECOS\n   solver\n\nThese two version numbers should typically agree, but they might not\nwhen a bug in the Python module has been fixed and nothing in the\nunderlying C solver has changed. The major version numbers should agree,\nhowever.\n\n### What happened to 2.0.7?\nBecause version-syncing ECOS and ECOS-Python can be tricky, the 2.0.7\nversion did not incorporate some minor changes to ECOS. In an\nill-advised move, the release was deleted in hopes it could be\nre-uploaded, despite plenty warnings stating otherwise.\n\nInstead, a post release has been made that contains identical content to\nthe 2.0.7 release. Generally, `pip` should pick up the post release for\n2.0.7 and any dependencies such as `pip install \"ecos>=2.0.5\"` should still\nwork as expected.\n\n## Deployment\nWhen creating new versions of the Python wrapper, please use\n`bumpversion` to bump the version number and also remember to tag the\ncommit so that CI is able to properly pick it up. See\n[Release](RELEASE.md) for more information.\n\n## Python2 Support\nStarting with version 2.0.8, ecos-python will no longer support\nPython2.7. You may be able to download an [older\nversion](https://github.com/embotech/ecos-python/releases/tag/2.0.7.post1)\nbut moving forward we will no longer publish Python2 wheels for use.\n\n## License\n\nECOS is distributed under the [GNU General Public License\nv3.0](http://www.gnu.org/copyleft/gpl.html). Other licenses may be\navailable upon request from [embotech](http://www.embotech.com).\n\n\n\n\n## Credits\n\nThe solver is essentially based on Lieven Vandenberghe's [CVXOPT](http://cvxopt.org) [ConeLP](http://www.ee.ucla.edu/~vandenbe/publications/coneprog.pdf) solver, although it differs in the particular way the linear systems are treated.\n\nThe following people have been, and are, involved in the development and maintenance of ECOS:\n\n+ Alexander Domahidi (principal developer)\n+ Eric Chu (Python interface, unit tests)\n+ Stephen Boyd (methods and maths)\n+ Michael Grant (CVX interface)\n+ Johan L\u00f6fberg (YALMIP interface)\n+ Jo\u00e3o Felipe Santos, Iain Dunning (Julia interface)\n+ Han Wang (ECOS branch and bound)\n\nThe main technical idea behind ECOS is described in a short [paper](http://www.stanford.edu/~boyd/papers/ecos.html). More details are given in Alexander Domahidi's [PhD Thesis](http://e-collection.library.ethz.ch/view/eth:7611?q=domahidi) in Chapter 9.\n\nIf you find ECOS useful, you can cite it using the following BibTex entry:\n\n```\n@INPROCEEDINGS{bib:Domahidi2013ecos,\nauthor={Domahidi, A. and Chu, E. and Boyd, S.},\nbooktitle={European Control Conference (ECC)},\ntitle={{ECOS}: {A}n {SOCP} solver for embedded systems},\nyear={2013},\npages={3071-3076}\n}\n```\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "This is the Python package for ECOS: Embedded Cone Solver. See Github page for more information.",
    "version": "2.0.13",
    "project_urls": {
        "Homepage": "http://github.com/embotech/ecos"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4e67882e8871cd036ef3d2c6f130c60459c15a62cb59116acc1079c500b7494",
                "md5": "42380a259c484bfe5444533c09617b2b",
                "sha256": "a1c1acf33b70f8657c25f07ec8d7b59bb01dbad39f072fa61fc956c2166ed979"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "42380a259c484bfe5444533c09617b2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 90806,
            "upload_time": "2024-02-07T00:03:53",
            "upload_time_iso_8601": "2024-02-07T00:03:53.830388Z",
            "url": "https://files.pythonhosted.org/packages/d4/e6/7882e8871cd036ef3d2c6f130c60459c15a62cb59116acc1079c500b7494/ecos-2.0.13-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "804398ca58202009431558f4d838e07b8a0a906a604492e420eac23d10aa688e",
                "md5": "16f7840798ef20905f54a02dfd9180de",
                "sha256": "4ea88ee2c94192004d6be9c55a3c79f184eaba3bbf31474229045a1b0a8a1536"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "16f7840798ef20905f54a02dfd9180de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 220345,
            "upload_time": "2024-02-07T00:03:01",
            "upload_time_iso_8601": "2024-02-07T00:03:01.412308Z",
            "url": "https://files.pythonhosted.org/packages/80/43/98ca58202009431558f4d838e07b8a0a906a604492e420eac23d10aa688e/ecos-2.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c434d51f5ef1024f79fa55adbd31d24b10880e79e1b424b662858e7759863dd9",
                "md5": "c40cf2bb3cdc5c57d85b001fd3b0dc5b",
                "sha256": "df8ae7fce79be9e5f79f0511c51a4824795de5154847fabe1a0288bc2ea349d3"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c40cf2bb3cdc5c57d85b001fd3b0dc5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 72031,
            "upload_time": "2024-02-07T00:05:24",
            "upload_time_iso_8601": "2024-02-07T00:05:24.674627Z",
            "url": "https://files.pythonhosted.org/packages/c4/34/d51f5ef1024f79fa55adbd31d24b10880e79e1b424b662858e7759863dd9/ecos-2.0.13-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19792de423d1ce19d7e5e5070d8972d2bc997a79f2745c82f78f66493b378892",
                "md5": "87e0f8da03779d98daaf2f8ad6c97742",
                "sha256": "88dd628bc6e77a069165fa5f50340e2856795c28e00e3fce213a04d7c41c584a"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "87e0f8da03779d98daaf2f8ad6c97742",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 90809,
            "upload_time": "2024-02-07T00:03:47",
            "upload_time_iso_8601": "2024-02-07T00:03:47.673065Z",
            "url": "https://files.pythonhosted.org/packages/19/79/2de423d1ce19d7e5e5070d8972d2bc997a79f2745c82f78f66493b378892/ecos-2.0.13-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1ecbbc7c651c3c06d312daf29382ded38bb74a52b73ac2b1cfee9be59dd4204",
                "md5": "2c8d39fe4468fd01c925825193efc7f0",
                "sha256": "78b2c969c7e22fd8a1d1cd0a90f4325d90572da23e2e923b0da6138ce62503d0"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c8d39fe4468fd01c925825193efc7f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 221583,
            "upload_time": "2024-02-07T00:02:59",
            "upload_time_iso_8601": "2024-02-07T00:02:59.198450Z",
            "url": "https://files.pythonhosted.org/packages/e1/ec/bbc7c651c3c06d312daf29382ded38bb74a52b73ac2b1cfee9be59dd4204/ecos-2.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "671f165ca12f4b3de6bd3fe8b16695013d28e88808effeff37858427ae56f449",
                "md5": "629666cd877016d5515924c74979f479",
                "sha256": "936890fb85a186360a5c8f228dd19acb760e234b38c598d0b46ab29644e31dfc"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "629666cd877016d5515924c74979f479",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 72028,
            "upload_time": "2024-02-07T00:05:25",
            "upload_time_iso_8601": "2024-02-07T00:05:25.583463Z",
            "url": "https://files.pythonhosted.org/packages/67/1f/165ca12f4b3de6bd3fe8b16695013d28e88808effeff37858427ae56f449/ecos-2.0.13-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63d3f7142d270cce3e8db7606e90abb8e84f1b9e951c4c3feb6129288c87a596",
                "md5": "cec772b4d2649cfdb4f8cc1d0a5ae5c2",
                "sha256": "62ed497ab56017f1d7264eb56223826a984462b1d84fb850d10f0bec3490877d"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cec772b4d2649cfdb4f8cc1d0a5ae5c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 90789,
            "upload_time": "2024-02-07T00:03:24",
            "upload_time_iso_8601": "2024-02-07T00:03:24.922805Z",
            "url": "https://files.pythonhosted.org/packages/63/d3/f7142d270cce3e8db7606e90abb8e84f1b9e951c4c3feb6129288c87a596/ecos-2.0.13-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a35b3169ac631acff650698e8119fda54f3747c0ab232b2b485d8593b7cefcd7",
                "md5": "e6273bf8ab23b9cca5eff5315535992c",
                "sha256": "cf2b1384012bee9e58e5a2373905d3644f74a0ea000b307a239366fe7850c29c"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6273bf8ab23b9cca5eff5315535992c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 223680,
            "upload_time": "2024-02-07T00:03:23",
            "upload_time_iso_8601": "2024-02-07T00:03:23.734369Z",
            "url": "https://files.pythonhosted.org/packages/a3/5b/3169ac631acff650698e8119fda54f3747c0ab232b2b485d8593b7cefcd7/ecos-2.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03f1488fd5970a3a1c9043f005b4a58353f166f5f4ce873c961bd0c760dd6888",
                "md5": "2c07958b10f5b3edef8b0d39756b550f",
                "sha256": "2c1ea09069e32185912506f946bb6d1f144841ba1d1cd0217c67f72cbdf7a8fd"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c07958b10f5b3edef8b0d39756b550f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 72166,
            "upload_time": "2024-02-07T00:05:14",
            "upload_time_iso_8601": "2024-02-07T00:05:14.021097Z",
            "url": "https://files.pythonhosted.org/packages/03/f1/488fd5970a3a1c9043f005b4a58353f166f5f4ce873c961bd0c760dd6888/ecos-2.0.13-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f154621cd4885ba3b922300c8e50744a5f311feb8173dc16119a786887781cfa",
                "md5": "8fb76b1d44f626c371849fd1525bf5a7",
                "sha256": "b9f4a76a3e1165359e1704ec6b1b89d487858ec0d838d62a7268133d88221914"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8fb76b1d44f626c371849fd1525bf5a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 90604,
            "upload_time": "2024-02-07T00:03:44",
            "upload_time_iso_8601": "2024-02-07T00:03:44.948237Z",
            "url": "https://files.pythonhosted.org/packages/f1/54/621cd4885ba3b922300c8e50744a5f311feb8173dc16119a786887781cfa/ecos-2.0.13-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bcc349504b9250fb0dda3660f4e8178742e037dd5dc6ffde567a4c0d6238deb",
                "md5": "2dcf54f45616e7bd480ea7360714bed5",
                "sha256": "d3c2d4e0d3ada1a619ddd62fbf48ccbe9b738fdbef119945fe2a05566d03b85a"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2dcf54f45616e7bd480ea7360714bed5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 218220,
            "upload_time": "2024-02-07T00:03:19",
            "upload_time_iso_8601": "2024-02-07T00:03:19.956137Z",
            "url": "https://files.pythonhosted.org/packages/1b/cc/349504b9250fb0dda3660f4e8178742e037dd5dc6ffde567a4c0d6238deb/ecos-2.0.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbfcdaa2ea986b28c66f436860c5650011d2ff2c506dd33ef17359081559e16d",
                "md5": "f29b671bac21aef7ba546b9c1ca2866e",
                "sha256": "84c72e1e5ffa41cd38352dcf0a8c25418f5bf04ed76a576db0daaf9a69f5568f"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f29b671bac21aef7ba546b9c1ca2866e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 71734,
            "upload_time": "2024-02-07T00:05:46",
            "upload_time_iso_8601": "2024-02-07T00:05:46.704853Z",
            "url": "https://files.pythonhosted.org/packages/fb/fc/daa2ea986b28c66f436860c5650011d2ff2c506dd33ef17359081559e16d/ecos-2.0.13-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21b1f322024c0f40550214531723887e9897bbdb0102ae562440257326fd0011",
                "md5": "9d49018b4ea6ac9cd9dfff1d81e965aa",
                "sha256": "1979f1f17ec7f1a0fc45964d02d762393f9f427d965fe8a893e7b1476a9023c3"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d49018b4ea6ac9cd9dfff1d81e965aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 90804,
            "upload_time": "2024-02-07T00:03:49",
            "upload_time_iso_8601": "2024-02-07T00:03:49.760571Z",
            "url": "https://files.pythonhosted.org/packages/21/b1/f322024c0f40550214531723887e9897bbdb0102ae562440257326fd0011/ecos-2.0.13-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa13829deb922a81299241d270364e154d5bbf1636606ce48d5be31561feddce",
                "md5": "40a1e2fc3ba743b545b63affa2b8b5ce",
                "sha256": "059e6c29c89f47a490353e4f9336e96350a5102a97e1d8a2aaff796bcbe50058"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40a1e2fc3ba743b545b63affa2b8b5ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 221645,
            "upload_time": "2024-02-07T00:02:58",
            "upload_time_iso_8601": "2024-02-07T00:02:58.669149Z",
            "url": "https://files.pythonhosted.org/packages/fa/13/829deb922a81299241d270364e154d5bbf1636606ce48d5be31561feddce/ecos-2.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8a1cd810f4341a3653012e01aa3f56d414f70ca93f241115041de428260297b",
                "md5": "c88a61c8cde165324bb81da91be67bf8",
                "sha256": "30c7d0cce6c830da5b9ea25af0d47b203255639524eb4d03d1331c600958c834"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c88a61c8cde165324bb81da91be67bf8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 72029,
            "upload_time": "2024-02-07T00:05:36",
            "upload_time_iso_8601": "2024-02-07T00:05:36.162145Z",
            "url": "https://files.pythonhosted.org/packages/b8/a1/cd810f4341a3653012e01aa3f56d414f70ca93f241115041de428260297b/ecos-2.0.13-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c5817cf7402da41f796fb4a35ac3d419431b3321a3963311d782651ad0252cf",
                "md5": "23289779b7b9886705ade6bb9e0a9346",
                "sha256": "ba42c15f1d79eb2ada532e9781b4aeb3ed84b1c7e38239ba4d6502c6a092d5b1"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "23289779b7b9886705ade6bb9e0a9346",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 90804,
            "upload_time": "2024-02-07T00:03:52",
            "upload_time_iso_8601": "2024-02-07T00:03:52.231487Z",
            "url": "https://files.pythonhosted.org/packages/4c/58/17cf7402da41f796fb4a35ac3d419431b3321a3963311d782651ad0252cf/ecos-2.0.13-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ded5aafdc766bb51ef70975902f48c6c07550f110fe6522d7629b872ee54ca8b",
                "md5": "ca3d7a6e905236215b17a998c7316c82",
                "sha256": "32fb33185f6dd94a1c798bc481eb86c9f4e832efec91f6ab0584e2fc26fd375e"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca3d7a6e905236215b17a998c7316c82",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 220163,
            "upload_time": "2024-02-07T00:03:06",
            "upload_time_iso_8601": "2024-02-07T00:03:06.404072Z",
            "url": "https://files.pythonhosted.org/packages/de/d5/aafdc766bb51ef70975902f48c6c07550f110fe6522d7629b872ee54ca8b/ecos-2.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32872814e0c6f93db878ed8a6ffc9e5fa934b9316554132c692ebd9df19c076f",
                "md5": "7ffec0e6db0bccb5aa6b010e7d8e6d44",
                "sha256": "68995ab12d363576dddb2d1f91ead3b9c8a8ca61f29000f0b1daef1b4e7b5b64"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7ffec0e6db0bccb5aa6b010e7d8e6d44",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 72031,
            "upload_time": "2024-02-07T00:05:34",
            "upload_time_iso_8601": "2024-02-07T00:05:34.183148Z",
            "url": "https://files.pythonhosted.org/packages/32/87/2814e0c6f93db878ed8a6ffc9e5fa934b9316554132c692ebd9df19c076f/ecos-2.0.13-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d261494d3da76c1ebecdcb1f3028c77b50a272f07e9d34b8eca981a7b3f6267",
                "md5": "91f22c03f1a246ee143933fecea503e4",
                "sha256": "f2a9dc108ade7faf6f6f4fad245f4714b7293c8767d2a351ead59428a94a98b9"
            },
            "downloads": -1,
            "filename": "ecos-2.0.13.tar.gz",
            "has_sig": false,
            "md5_digest": "91f22c03f1a246ee143933fecea503e4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 142400,
            "upload_time": "2024-02-07T00:03:05",
            "upload_time_iso_8601": "2024-02-07T00:03:05.785193Z",
            "url": "https://files.pythonhosted.org/packages/4d/26/1494d3da76c1ebecdcb1f3028c77b50a272f07e9d34b8eca981a7b3f6267/ecos-2.0.13.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-07 00:03:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "embotech",
    "github_project": "ecos",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "ecos"
}
        
Elapsed time: 0.18146s