pyslsqp


Namepyslsqp JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryA transparent Python interface to the SLSQP optimization algorithm, with advanced features and visualization capabilities.
upload_time2024-06-02 23:11:57
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseCopyright (c) 2024, Anugrah Jo Joshy. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords slsqp optimization optimization algorithm nlp optimizer nonlinear programming numerical optimization
VCS
bugtrack_url
requirements sphinx sphinx_rtd_theme sphinx-copybutton sphinxcontrib-bibtex myst-nb numpydoc setuptools ninja meson numpy numpy h5py matplotlib
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PySLSQP

[![GitHub Actions Test Badge](https://github.com/anugrahjo/PySLSQP/actions/workflows/build_install_test.yml/badge.svg)](https://github.com/anugrahjo/PySLSQP/actions)
[![Coverage Status](https://coveralls.io/repos/github/anugrahjo/PySLSQP/badge.svg?branch=main)](https://coveralls.io/github/anugrahjo/PySLSQP?branch=main)
[![Documentation Status](https://readthedocs.org/projects/pyslsqp/badge/?version=latest)](https://pyslsqp.readthedocs.io/en/latest/?badge=main)
[![Pypi version](https://img.shields.io/pypi/v/pyslsqp)](https://pypi.org/project/pyslsqp/)
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://github.com/anugrahjo/PySLSQP/blob/main/LICENSE.txt)
<!-- [![PyPI Monthly Downloads][https://img.shields.io/pypi/dm/pyslsqp]][https://pypi.org/project/pyslsqp/] -->
<!-- [![Forks](https://img.shields.io/github/forks/anugrahjo/PySLSQP.svg)](https://github.com/anugrahjo/PySLSQP/network) -->
<!-- [![Issues](https://img.shields.io/github/issues/anugrahjo/PySLSQP.svg)](https://github.com/anugrahjo/PySLSQP/issues) -->
<!-- [![Python](https://img.shields.io/pypi/pyversions/PySLSQP)](https://img.shields.io/pypi/pyversions/PySLSQP) -->
<!-- [![Pypi](https://img.shields.io/pypi/v/PySLSQP)](https://pypi.org/project/PySLSQP/) -->

The SLSQP algorithm is designed to solve nonlinear programming (NLP) problems.
PySLSQP is a Python package that wrraps the original SLSQP algorithm 
implemented in Fortran by Dieter Kraft.
While the Fortran code is sourced from 
[`scipy.optimize.minimize`](https://docs.scipy.org/doc/scipy/reference/optimize.minimize-slsqp.html), 
PySLSQP extends its functionality
by offering new features for further analysis of optimization problems, 
thereby significantly improving the utility of the original algorithm.
The prebuilt packages for various system architectures are available on PyPI for download, 
thus avoiding the need for the user to compile the Fortran sources.


Some of the additional features provided by PySLSQP include:

- **Data Saving**: PySLSQP allows you to save optimization data during the optimization process. 
  This can be useful for analyzing the progress of the optimization, for post-processing purposes, 
  or for warm/hot restart of the optimization.

- **Warm/Hot Starting**: PySLSQP supports warm/hot starting, enabling users to initialize the optimization 
  algorithm with a previously saved solution. This can be particularly useful when you want to restart an 
  optimization from a previous solution or continue an optimization that was terminated
  for various reasons.

- **Live Visualization**: PySLSQP provides the capability to visualize the optimization progress in real-time,
  enabling users to monitor the convergence via the optimality and feasibility measures.
  This also helps the users understand how the objective function, constraints, and design variables 
  are changing during the optimization.

- **Scaling**: PySLSQP allows you to independently scale the objective function, constraints, and design variables, 
  separate from their original definitions.
  Scaling can help improve the convergence behavior of the optimization algorithm and make it more robust.

- **More Internal Optimization Variables**: PySLSQP provides access to additional internal optimization variables
  such as optimality, feasibility, Lagrange multipliers, etc. which can be useful for advanced analysis 
  of the optimization problem. 
  In `scipy.optimize.minimize`, the original callback function 
  returns only the optimization variables, and only for the major iterations.

These additional features make PySLSQP a powerful tool for solving constrained optimization problems in Python.
In addition, PySLSQP also supports the estimation of gradients using first-order finite differencing, 
as in the Scipy version. 

<!-- ## Dependencies
Before installing PySLSQP, make sure you have the dependencies installed.
Numpy is the minimum requirement for using PySLSQP. 
[numpy](https://numpy.org/install/) can be installed from PyPI with
```sh
pip install numpy
```
Additionally, if you need to save optimization data and visualize different variables during the optimization,
install `h5py` and `matplotlib` respectively.
All the dependencies can be installed at once with 
```sh
pip install numpy h5py matplotlib
``` -->

## Installation

To install the latest release of PySLSQP on PyPI, run on the terminal or command line
```sh
pip install pyslsqp
```

> **Warning**
> 
> Precompiled wheels for common Ubuntu and macOS architectures are available on PyPI.
  However, if a wheel for your system's architecture is not available, or if you are a Windows user,
  the above installation will compile the source distribution directly on your machine.
  In such scenarios, if your Fortran compilers aren't compatible, you may encounter compilation errors.
  Additional troubleshooting may be required to resolve these errors depending on their specifics.


To install the latest commit from the main branch, run
```sh
pip install git+https://github.com/anugrahjo/PySLSQP.git@main
```
Note that this installation method will compile the Fortran sources locally on your machine.
Therefore, we only recommend this method if you are a developer looking to modify the package for your own use case.

To upgrade PySLSQP from an older version to the latest released version on PyPI, run
```sh
pip install --upgrade pyslsqp
```

To uninstall PySLSQP, run
```sh
pip uninstall pyslsqp
```

## Testing
To test if the package works correctly and as intended, install `pytest` using
```sh
pip install pytest
```
and run the following line on the terminal from the project's root directory:
```sh
pytest -m "not visualize"
```

## Usage
Most features of the PySLSQP package can be accessed through the `optimize` function.
However, there are some additional utility functions that are available for post-processing.
Here is a small optimization example that minimizes `x^2 + y^2`.

```python
import numpy as np
from pyslsqp import optimize

# `v` represents the vector of optimization variables
def objective(v):
    # the objective function
    return v[0]**2 + v[1]**2

x0 = np.array([1., 1.])
# optimize() returns a dictionary that contains the results from optimization
results = optimize(x0, obj=objective)
print(results)
```
Note that we did not provide the gradient for the objective function above.
In the absence of user-provided gradients, `optimize` estimates the gradients
using first-order finite differencing.
However, it is always more efficient for the user to provide the exact gradients.
Note also that we did not have any constraints or variable bounds in this problem.
Examples with user-defined gradients, constraints, and bounds
can be found in the [Basic User Guide](https://pyslsqp.readthedocs.io/en/latest/src/basic.html).

## Documentation
For API reference and more details on installation and usage, visit the [documentation](https://pyslsqp.readthedocs.io/).

## Citation
If you use PySLSQP in your work, please use the following reference for citation:

```
@Misc{pyslsqp,
author = "Anugrah Jo Joshy",
title = "PySLSQP",
howpublished = "\url{https://github.com/anugrahjo/PySLSQP}",
year = "2024",
}
```

## Bugs, feature requests, questions
Please use the [GitHub issue tracker](https://github.com/anugrahjo/PySLSQP/issues) for reporting bugs, requesting new features, or any other questions.

## Contributing
We always welcome contributions to PySLSQP. 
Please refer the [`CONTRIBUTING.md`](https://github.com/anugrahjo/PySLSQP/blob/main/CONTRIBUTING.md) 
file for guidelines on how to contribute.

## License
This project is licensed under the terms of the [BSD 3-Clause "New" or "Revised" License](https://github.com/anugrahjo/PySLSQP/blob/main/LICENSE.txt).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyslsqp",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Anugrah Jo Joshy <ajoshy.ucsd@gmail.com>",
    "keywords": "slsqp, optimization, optimization algorithm, nlp, optimizer, nonlinear programming, numerical optimization",
    "author": null,
    "author_email": "Anugrah Jo Joshy <ajoshy.ucsd@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/b6/81/3cccf3bdb5a3b97aa287271bce36947e7b3d925343841647a5feeb325997/pyslsqp-0.1.0.tar.gz",
    "platform": null,
    "description": "# PySLSQP\n\n[![GitHub Actions Test Badge](https://github.com/anugrahjo/PySLSQP/actions/workflows/build_install_test.yml/badge.svg)](https://github.com/anugrahjo/PySLSQP/actions)\n[![Coverage Status](https://coveralls.io/repos/github/anugrahjo/PySLSQP/badge.svg?branch=main)](https://coveralls.io/github/anugrahjo/PySLSQP?branch=main)\n[![Documentation Status](https://readthedocs.org/projects/pyslsqp/badge/?version=latest)](https://pyslsqp.readthedocs.io/en/latest/?badge=main)\n[![Pypi version](https://img.shields.io/pypi/v/pyslsqp)](https://pypi.org/project/pyslsqp/)\n[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://github.com/anugrahjo/PySLSQP/blob/main/LICENSE.txt)\n<!-- [![PyPI Monthly Downloads][https://img.shields.io/pypi/dm/pyslsqp]][https://pypi.org/project/pyslsqp/] -->\n<!-- [![Forks](https://img.shields.io/github/forks/anugrahjo/PySLSQP.svg)](https://github.com/anugrahjo/PySLSQP/network) -->\n<!-- [![Issues](https://img.shields.io/github/issues/anugrahjo/PySLSQP.svg)](https://github.com/anugrahjo/PySLSQP/issues) -->\n<!-- [![Python](https://img.shields.io/pypi/pyversions/PySLSQP)](https://img.shields.io/pypi/pyversions/PySLSQP) -->\n<!-- [![Pypi](https://img.shields.io/pypi/v/PySLSQP)](https://pypi.org/project/PySLSQP/) -->\n\nThe SLSQP algorithm is designed to solve nonlinear programming (NLP) problems.\nPySLSQP is a Python package that wrraps the original SLSQP algorithm \nimplemented in Fortran by Dieter Kraft.\nWhile the Fortran code is sourced from \n[`scipy.optimize.minimize`](https://docs.scipy.org/doc/scipy/reference/optimize.minimize-slsqp.html), \nPySLSQP extends its functionality\nby offering new features for further analysis of optimization problems, \nthereby significantly improving the utility of the original algorithm.\nThe prebuilt packages for various system architectures are available on PyPI for download, \nthus avoiding the need for the user to compile the Fortran sources.\n\n\nSome of the additional features provided by PySLSQP include:\n\n- **Data Saving**: PySLSQP allows you to save optimization data during the optimization process. \n  This can be useful for analyzing the progress of the optimization, for post-processing purposes, \n  or for warm/hot restart of the optimization.\n\n- **Warm/Hot Starting**: PySLSQP supports warm/hot starting, enabling users to initialize the optimization \n  algorithm with a previously saved solution. This can be particularly useful when you want to restart an \n  optimization from a previous solution or continue an optimization that was terminated\n  for various reasons.\n\n- **Live Visualization**: PySLSQP provides the capability to visualize the optimization progress in real-time,\n  enabling users to monitor the convergence via the optimality and feasibility measures.\n  This also helps the users understand how the objective function, constraints, and design variables \n  are changing during the optimization.\n\n- **Scaling**: PySLSQP allows you to independently scale the objective function, constraints, and design variables, \n  separate from their original definitions.\n  Scaling can help improve the convergence behavior of the optimization algorithm and make it more robust.\n\n- **More Internal Optimization Variables**: PySLSQP provides access to additional internal optimization variables\n  such as optimality, feasibility, Lagrange multipliers, etc. which can be useful for advanced analysis \n  of the optimization problem. \n  In `scipy.optimize.minimize`, the original callback function \n  returns only the optimization variables, and only for the major iterations.\n\nThese additional features make PySLSQP a powerful tool for solving constrained optimization problems in Python.\nIn addition, PySLSQP also supports the estimation of gradients using first-order finite differencing, \nas in the Scipy version. \n\n<!-- ## Dependencies\nBefore installing PySLSQP, make sure you have the dependencies installed.\nNumpy is the minimum requirement for using PySLSQP. \n[numpy](https://numpy.org/install/) can be installed from PyPI with\n```sh\npip install numpy\n```\nAdditionally, if you need to save optimization data and visualize different variables during the optimization,\ninstall `h5py` and `matplotlib` respectively.\nAll the dependencies can be installed at once with \n```sh\npip install numpy h5py matplotlib\n``` -->\n\n## Installation\n\nTo install the latest release of PySLSQP on PyPI, run on the terminal or command line\n```sh\npip install pyslsqp\n```\n\n> **Warning**\n> \n> Precompiled wheels for common Ubuntu and macOS architectures are available on PyPI.\n  However, if a wheel for your system's architecture is not available, or if you are a Windows user,\n  the above installation will compile the source distribution directly on your machine.\n  In such scenarios, if your Fortran compilers aren't compatible, you may encounter compilation errors.\n  Additional troubleshooting may be required to resolve these errors depending on their specifics.\n\n\nTo install the latest commit from the main branch, run\n```sh\npip install git+https://github.com/anugrahjo/PySLSQP.git@main\n```\nNote that this installation method will compile the Fortran sources locally on your machine.\nTherefore, we only recommend this method if you are a developer looking to modify the package for your own use case.\n\nTo upgrade PySLSQP from an older version to the latest released version on PyPI, run\n```sh\npip install --upgrade pyslsqp\n```\n\nTo uninstall PySLSQP, run\n```sh\npip uninstall pyslsqp\n```\n\n## Testing\nTo test if the package works correctly and as intended, install `pytest` using\n```sh\npip install pytest\n```\nand run the following line on the terminal from the project's root directory:\n```sh\npytest -m \"not visualize\"\n```\n\n## Usage\nMost features of the PySLSQP package can be accessed through the `optimize` function.\nHowever, there are some additional utility functions that are available for post-processing.\nHere is a small optimization example that minimizes `x^2 + y^2`.\n\n```python\nimport numpy as np\nfrom pyslsqp import optimize\n\n# `v` represents the vector of optimization variables\ndef objective(v):\n    # the objective function\n    return v[0]**2 + v[1]**2\n\nx0 = np.array([1., 1.])\n# optimize() returns a dictionary that contains the results from optimization\nresults = optimize(x0, obj=objective)\nprint(results)\n```\nNote that we did not provide the gradient for the objective function above.\nIn the absence of user-provided gradients, `optimize` estimates the gradients\nusing first-order finite differencing.\nHowever, it is always more efficient for the user to provide the exact gradients.\nNote also that we did not have any constraints or variable bounds in this problem.\nExamples with user-defined gradients, constraints, and bounds\ncan be found in the [Basic User Guide](https://pyslsqp.readthedocs.io/en/latest/src/basic.html).\n\n## Documentation\nFor API reference and more details on installation and usage, visit the [documentation](https://pyslsqp.readthedocs.io/).\n\n## Citation\nIf you use PySLSQP in your work, please use the following reference for citation:\n\n```\n@Misc{pyslsqp,\nauthor = \"Anugrah Jo Joshy\",\ntitle = \"PySLSQP\",\nhowpublished = \"\\url{https://github.com/anugrahjo/PySLSQP}\",\nyear = \"2024\",\n}\n```\n\n## Bugs, feature requests, questions\nPlease use the [GitHub issue tracker](https://github.com/anugrahjo/PySLSQP/issues) for reporting bugs, requesting new features, or any other questions.\n\n## Contributing\nWe always welcome contributions to PySLSQP. \nPlease refer the [`CONTRIBUTING.md`](https://github.com/anugrahjo/PySLSQP/blob/main/CONTRIBUTING.md) \nfile for guidelines on how to contribute.\n\n## License\nThis project is licensed under the terms of the [BSD 3-Clause \"New\" or \"Revised\" License](https://github.com/anugrahjo/PySLSQP/blob/main/LICENSE.txt).\n",
    "bugtrack_url": null,
    "license": "Copyright (c) 2024, Anugrah Jo Joshy. All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
    "summary": "A transparent Python interface to the SLSQP optimization algorithm, with advanced features and visualization capabilities.",
    "version": "0.1.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/anugrahjo/pyslsqp/issues",
        "Changelog": "https://pyslsqp.readthedocs.io/en/latest/src/changelog.html",
        "Documentation": "https://pyslsqp.readthedocs.io/en/latest/",
        "Download": "https://pypi.org/project/pyslsqp/#files",
        "Homepage/Repository": "https://github.com/anugrahjo/pyslsqp"
    },
    "split_keywords": [
        "slsqp",
        " optimization",
        " optimization algorithm",
        " nlp",
        " optimizer",
        " nonlinear programming",
        " numerical optimization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "119a5f258c9f5c78f78474ee6c5d0479219342387b5677cbfab401d9e183fd76",
                "md5": "9734bee9fbc2cbd25c1169fd9a0e8ff7",
                "sha256": "f7890d8879d31d37c6595a3996f04390f5ee3594e97c4af794e5eda00aea6222"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9734bee9fbc2cbd25c1169fd9a0e8ff7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1480247,
            "upload_time": "2024-06-02T23:11:17",
            "upload_time_iso_8601": "2024-06-02T23:11:17.474429Z",
            "url": "https://files.pythonhosted.org/packages/11/9a/5f258c9f5c78f78474ee6c5d0479219342387b5677cbfab401d9e183fd76/pyslsqp-0.1.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14759ed89a7b183373adf4f94f02117299a3fcef033816e1f93b69411399a287",
                "md5": "6f8f756a6ed5b07c4d60190f5593289c",
                "sha256": "34984d0857754b3c67dfadb7808dbbb9b0484974a8b7959ad3c0910f818b784c"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp310-cp310-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f8f756a6ed5b07c4d60190f5593289c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1480319,
            "upload_time": "2024-06-02T23:11:19",
            "upload_time_iso_8601": "2024-06-02T23:11:19.676125Z",
            "url": "https://files.pythonhosted.org/packages/14/75/9ed89a7b183373adf4f94f02117299a3fcef033816e1f93b69411399a287/pyslsqp-0.1.0-cp310-cp310-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11e1cefd89084f816ee499639513a50f8380b4b0ae49d26db8cd98123532743c",
                "md5": "3544264b0e29a88ca8e157c0aaf5907e",
                "sha256": "ec94f1e690215b8c4bc0065623fc28211c169992933a430d8c39f3c5e38ca62c"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp310-cp310-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3544264b0e29a88ca8e157c0aaf5907e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1476354,
            "upload_time": "2024-06-02T23:11:21",
            "upload_time_iso_8601": "2024-06-02T23:11:21.524489Z",
            "url": "https://files.pythonhosted.org/packages/11/e1/cefd89084f816ee499639513a50f8380b4b0ae49d26db8cd98123532743c/pyslsqp-0.1.0-cp310-cp310-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "174d52d9c186ca4374b9aa229e5dd36a517467ffeca422a5a8f0a2e98b144a28",
                "md5": "b0f2a97d52ca401350141432525ad969",
                "sha256": "e575d1101bd2eccfb54af721924f813a3af4a9166394353b7ba2f654c9e5ab27"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp310-cp310-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b0f2a97d52ca401350141432525ad969",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 859182,
            "upload_time": "2024-06-02T23:11:22",
            "upload_time_iso_8601": "2024-06-02T23:11:22.912777Z",
            "url": "https://files.pythonhosted.org/packages/17/4d/52d9c186ca4374b9aa229e5dd36a517467ffeca422a5a8f0a2e98b144a28/pyslsqp-0.1.0-cp310-cp310-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1e4e2eefac87e2fcf2c0de83ba9aa35b57d0d8f6b6f295f108b4de5349c8094",
                "md5": "441cf6069fa6aa8e744c63436e785c2e",
                "sha256": "f0b1abda11f2d9eac359be7aa7db952ab43cb4e17a9c9484502807250721473d"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "441cf6069fa6aa8e744c63436e785c2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1230720,
            "upload_time": "2024-06-02T23:11:24",
            "upload_time_iso_8601": "2024-06-02T23:11:24.856127Z",
            "url": "https://files.pythonhosted.org/packages/b1/e4/e2eefac87e2fcf2c0de83ba9aa35b57d0d8f6b6f295f108b4de5349c8094/pyslsqp-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "520a0d1a98a43e0c8c668cbd1e1e4d05cbd39187f2799bb601edee1d2717785b",
                "md5": "1b37502ca269820f8ac786b5d03e421d",
                "sha256": "e97b587f99a9e0f9c8a7e4212baafd16e6ef4f80f29c4ac4db78aaeea74da22b"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp311-cp311-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b37502ca269820f8ac786b5d03e421d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1516879,
            "upload_time": "2024-06-02T23:11:26",
            "upload_time_iso_8601": "2024-06-02T23:11:26.268828Z",
            "url": "https://files.pythonhosted.org/packages/52/0a/0d1a98a43e0c8c668cbd1e1e4d05cbd39187f2799bb601edee1d2717785b/pyslsqp-0.1.0-cp311-cp311-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bd6e3d9a3951b1a88ccd5c5a2ef748f882b090c3088e9a311642d11a630172c",
                "md5": "f64bd7f814df039a85636e42d8cb9b44",
                "sha256": "a011127f2076cd8ad2a89b2624a944c03e7ee1a53e7a9bb7f61abb6055d76de3"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp311-cp311-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f64bd7f814df039a85636e42d8cb9b44",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1516260,
            "upload_time": "2024-06-02T23:11:27",
            "upload_time_iso_8601": "2024-06-02T23:11:27.568558Z",
            "url": "https://files.pythonhosted.org/packages/1b/d6/e3d9a3951b1a88ccd5c5a2ef748f882b090c3088e9a311642d11a630172c/pyslsqp-0.1.0-cp311-cp311-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afe95bcbd8b895f7d10acbe41cd6a193d72bec4a27a25cd8a681a5007eaa0c95",
                "md5": "1d73ee5afd693eac5864ce7b884524b7",
                "sha256": "64ec3c8cc3194eb3e550653b30192204226f589799e929ff802e82dab156200a"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp311-cp311-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d73ee5afd693eac5864ce7b884524b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1512696,
            "upload_time": "2024-06-02T23:11:29",
            "upload_time_iso_8601": "2024-06-02T23:11:29.538051Z",
            "url": "https://files.pythonhosted.org/packages/af/e9/5bcbd8b895f7d10acbe41cd6a193d72bec4a27a25cd8a681a5007eaa0c95/pyslsqp-0.1.0-cp311-cp311-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99e1c31b8338b191366d796f0521971dcbe71ed4d7fdf6e6a7996a41ffd372e9",
                "md5": "0ef414c109695af5ab670f83ba273a4e",
                "sha256": "fbd998ac552f7c2ef33aed3167c86a1a7c328bfe2b5c87e6a3610f3c3d82ea4a"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp311-cp311-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0ef414c109695af5ab670f83ba273a4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 895737,
            "upload_time": "2024-06-02T23:11:31",
            "upload_time_iso_8601": "2024-06-02T23:11:31.522563Z",
            "url": "https://files.pythonhosted.org/packages/99/e1/c31b8338b191366d796f0521971dcbe71ed4d7fdf6e6a7996a41ffd372e9/pyslsqp-0.1.0-cp311-cp311-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f1e841e4c50eabec3fb3685978d9710ee83a11f94131d54600401be86977579",
                "md5": "7336217370dd35144259fab2f2e948eb",
                "sha256": "705e99cbf27dc2cc4bc505b91b285cfa808792268cb48a13326ac64e49ba458f"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7336217370dd35144259fab2f2e948eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1299434,
            "upload_time": "2024-06-02T23:11:32",
            "upload_time_iso_8601": "2024-06-02T23:11:32.933886Z",
            "url": "https://files.pythonhosted.org/packages/0f/1e/841e4c50eabec3fb3685978d9710ee83a11f94131d54600401be86977579/pyslsqp-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcad9e9f2559b67bb4d09ce15bae0dbd0e29bbd90e3327c22e7ef67d6d59f5ee",
                "md5": "f0072a5693eeea55698cfba7aa1cc27d",
                "sha256": "b3cceb8795dc054c27431c1915f2c268770f52d6cb364733f59a7ec3270643a6"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp312-cp312-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0072a5693eeea55698cfba7aa1cc27d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1554467,
            "upload_time": "2024-06-02T23:11:34",
            "upload_time_iso_8601": "2024-06-02T23:11:34.223464Z",
            "url": "https://files.pythonhosted.org/packages/dc/ad/9e9f2559b67bb4d09ce15bae0dbd0e29bbd90e3327c22e7ef67d6d59f5ee/pyslsqp-0.1.0-cp312-cp312-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f41b3425bbb74a364be26f42ba06705e7cd62fe6637caa9bf7af0e015efb91f9",
                "md5": "44ef5a67e36d7d0dc1850ced8e425d74",
                "sha256": "1aa88b4e2e4bb0422fdaba13c6041dbc5416d9912b58867a5528d82aaac71ae0"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp312-cp312-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44ef5a67e36d7d0dc1850ced8e425d74",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1553090,
            "upload_time": "2024-06-02T23:11:35",
            "upload_time_iso_8601": "2024-06-02T23:11:35.621155Z",
            "url": "https://files.pythonhosted.org/packages/f4/1b/3425bbb74a364be26f42ba06705e7cd62fe6637caa9bf7af0e015efb91f9/pyslsqp-0.1.0-cp312-cp312-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16bf32e4d695b6e3d4f12f9b72a0514c6cc28a592b6db7169f0ee7180ac83cf1",
                "md5": "39facb22028aa78ee208fbaabf9b1b97",
                "sha256": "ad6d8c3683cdd34a6f0bf860c5455a4f7377f7a5d95c86d394f4e4cfdd2f88da"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp312-cp312-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39facb22028aa78ee208fbaabf9b1b97",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1550004,
            "upload_time": "2024-06-02T23:11:36",
            "upload_time_iso_8601": "2024-06-02T23:11:36.942952Z",
            "url": "https://files.pythonhosted.org/packages/16/bf/32e4d695b6e3d4f12f9b72a0514c6cc28a592b6db7169f0ee7180ac83cf1/pyslsqp-0.1.0-cp312-cp312-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d34ee13523b1ff297067d3119a932d7e304d2c8bff6f4bd37d3c6800de80bf61",
                "md5": "6efc6f9ba93832f4ba455183b42bd29b",
                "sha256": "94ac9dcb5fa452c909ca94f6ea27c01c85f24825d4847ca8ff3706d2be7b7500"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp312-cp312-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6efc6f9ba93832f4ba455183b42bd29b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 933061,
            "upload_time": "2024-06-02T23:11:38",
            "upload_time_iso_8601": "2024-06-02T23:11:38.298411Z",
            "url": "https://files.pythonhosted.org/packages/d3/4e/e13523b1ff297067d3119a932d7e304d2c8bff6f4bd37d3c6800de80bf61/pyslsqp-0.1.0-cp312-cp312-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e41cf0aeb40967664c46529565c1f09f7ebd87c02e4f1a0a02d7ef040af87898",
                "md5": "e5402aae08adc37b8d1e6d323e197c27",
                "sha256": "367c9707818b255e1c9cb54841e8ea0be7696a3661ffa627e50df0556909526e"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5402aae08adc37b8d1e6d323e197c27",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1370698,
            "upload_time": "2024-06-02T23:11:40",
            "upload_time_iso_8601": "2024-06-02T23:11:40.166423Z",
            "url": "https://files.pythonhosted.org/packages/e4/1c/f0aeb40967664c46529565c1f09f7ebd87c02e4f1a0a02d7ef040af87898/pyslsqp-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e789343d36d57d730ba20b2314b5fb08675ee792c35ee72c4c0755d98ab37292",
                "md5": "be644091d8a80c2cc6915fa3cc16cbcc",
                "sha256": "0749513e598b4261500424bac3c5803fe5eb54ad74b6f8284ef28633aed315c3"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be644091d8a80c2cc6915fa3cc16cbcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1408129,
            "upload_time": "2024-06-02T23:11:41",
            "upload_time_iso_8601": "2024-06-02T23:11:41.531309Z",
            "url": "https://files.pythonhosted.org/packages/e7/89/343d36d57d730ba20b2314b5fb08675ee792c35ee72c4c0755d98ab37292/pyslsqp-0.1.0-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49e7da5752820386aa028c2f0cfc16c3ef6627282991ffa24a23ba5604ec1df5",
                "md5": "04c3e08b331d490aa82087f30df7e742",
                "sha256": "00ecbe0b9407fe7695cf25bc299d9a96a56e4195ada3c4c54efbc6c2cc708d41"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp38-cp38-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04c3e08b331d490aa82087f30df7e742",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1409813,
            "upload_time": "2024-06-02T23:11:43",
            "upload_time_iso_8601": "2024-06-02T23:11:43.478207Z",
            "url": "https://files.pythonhosted.org/packages/49/e7/da5752820386aa028c2f0cfc16c3ef6627282991ffa24a23ba5604ec1df5/pyslsqp-0.1.0-cp38-cp38-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "416a12aa8fa5656f7bd14857ba6cb083211e25368c0c999f02bbf9a1a50dfd35",
                "md5": "7ffd4cccbcc216d3dc4f59865b4b7da8",
                "sha256": "8c5ade66c9d5ab0ad34f5e0205f4268f638eba4f1ee9566e11fe8d8acf3d2cfa"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp38-cp38-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ffd4cccbcc216d3dc4f59865b4b7da8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1404790,
            "upload_time": "2024-06-02T23:11:44",
            "upload_time_iso_8601": "2024-06-02T23:11:44.677954Z",
            "url": "https://files.pythonhosted.org/packages/41/6a/12aa8fa5656f7bd14857ba6cb083211e25368c0c999f02bbf9a1a50dfd35/pyslsqp-0.1.0-cp38-cp38-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45998c728e5468af5d69792fffc27821aefcb484b7d6e53b6356bac7aa017e4c",
                "md5": "9e5a910f1f4b2f91028696a32e9e820a",
                "sha256": "77b9e475f95555e3c172f0fdc3d559fe0be7f45f283e70c521e1874d26dca556"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp38-cp38-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9e5a910f1f4b2f91028696a32e9e820a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 787355,
            "upload_time": "2024-06-02T23:11:46",
            "upload_time_iso_8601": "2024-06-02T23:11:46.563982Z",
            "url": "https://files.pythonhosted.org/packages/45/99/8c728e5468af5d69792fffc27821aefcb484b7d6e53b6356bac7aa017e4c/pyslsqp-0.1.0-cp38-cp38-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c39361d29647379d479f9b4cea2ba0499406daa40185b6dd53e4e76a9ace69d1",
                "md5": "0a8001568a0808851d9b16ca2c0c94d1",
                "sha256": "36763864c64641f96a4d2cc72f273b0ab04f7bd7dc4ab12fa74f109ca05267c1"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a8001568a0808851d9b16ca2c0c94d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1097178,
            "upload_time": "2024-06-02T23:11:47",
            "upload_time_iso_8601": "2024-06-02T23:11:47.767504Z",
            "url": "https://files.pythonhosted.org/packages/c3/93/61d29647379d479f9b4cea2ba0499406daa40185b6dd53e4e76a9ace69d1/pyslsqp-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94906e2fec16b9801e0d29e4a1a0a8d81280624d03938819d057a4a8bdbaad84",
                "md5": "74e61d1c23c811d519a62bad58eb7a6f",
                "sha256": "a341962423a81d07e0e35d5ac5894c1ca03f8b3991257b0f2930d3fea12b2b38"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74e61d1c23c811d519a62bad58eb7a6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1444157,
            "upload_time": "2024-06-02T23:11:49",
            "upload_time_iso_8601": "2024-06-02T23:11:49.571552Z",
            "url": "https://files.pythonhosted.org/packages/94/90/6e2fec16b9801e0d29e4a1a0a8d81280624d03938819d057a4a8bdbaad84/pyslsqp-0.1.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28cfeb65135b713d49babe841bf21b092ec59c45aa3a80ebc3b46870b78e163c",
                "md5": "b8b085c88af1894edd8e9d380ad3cace",
                "sha256": "a79b9d3b418dd81f8d3ff251e370f4f5c34f38ec1090b9452db7a245a17e27ec"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp39-cp39-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8b085c88af1894edd8e9d380ad3cace",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1445049,
            "upload_time": "2024-06-02T23:11:50",
            "upload_time_iso_8601": "2024-06-02T23:11:50.901893Z",
            "url": "https://files.pythonhosted.org/packages/28/cf/eb65135b713d49babe841bf21b092ec59c45aa3a80ebc3b46870b78e163c/pyslsqp-0.1.0-cp39-cp39-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5899a456b4a91c88b10f64540fe8c58ffcf0bb1af1b2c7ad7ffd0726f2b39ca",
                "md5": "1528d14d9032db3d802f70c61c20ccb8",
                "sha256": "124ae09872ed107b6b8d9538848617d61957d2a477da47cacaea2f977d7fed6d"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp39-cp39-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1528d14d9032db3d802f70c61c20ccb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1440554,
            "upload_time": "2024-06-02T23:11:52",
            "upload_time_iso_8601": "2024-06-02T23:11:52.207366Z",
            "url": "https://files.pythonhosted.org/packages/f5/89/9a456b4a91c88b10f64540fe8c58ffcf0bb1af1b2c7ad7ffd0726f2b39ca/pyslsqp-0.1.0-cp39-cp39-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9df8625cd75186cb1bd535a46370b8435a25c1307d666995540db6f8b69e9ad",
                "md5": "6bc2e9e6e41c1bd3a645b025eed3020c",
                "sha256": "96cf955b4a25500b0e46e8b3ca4f071f4d58b88a968ff87d77668f7149fdc111"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp39-cp39-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6bc2e9e6e41c1bd3a645b025eed3020c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 823246,
            "upload_time": "2024-06-02T23:11:53",
            "upload_time_iso_8601": "2024-06-02T23:11:53.439473Z",
            "url": "https://files.pythonhosted.org/packages/f9/df/8625cd75186cb1bd535a46370b8435a25c1307d666995540db6f8b69e9ad/pyslsqp-0.1.0-cp39-cp39-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49a1673cad156040acc81065d5016e57207900ea40a014e359ed90e0293dc5fd",
                "md5": "0cd0894d6af834185e06ac63b65eb614",
                "sha256": "f38dba1dab6bad4af911020c1f5f4cdd994cfb5bb0a38ca64f230d78cf2c1eb1"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0cd0894d6af834185e06ac63b65eb614",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1163800,
            "upload_time": "2024-06-02T23:11:55",
            "upload_time_iso_8601": "2024-06-02T23:11:55.199466Z",
            "url": "https://files.pythonhosted.org/packages/49/a1/673cad156040acc81065d5016e57207900ea40a014e359ed90e0293dc5fd/pyslsqp-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6813cccf3bdb5a3b97aa287271bce36947e7b3d925343841647a5feeb325997",
                "md5": "f2c7299c054828961cb741a1fc90832e",
                "sha256": "ea1af9804a1cb954b41abc0743eea4961530b4e169042855061d509febb8dea4"
            },
            "downloads": -1,
            "filename": "pyslsqp-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f2c7299c054828961cb741a1fc90832e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1509059,
            "upload_time": "2024-06-02T23:11:57",
            "upload_time_iso_8601": "2024-06-02T23:11:57.009912Z",
            "url": "https://files.pythonhosted.org/packages/b6/81/3cccf3bdb5a3b97aa287271bce36947e7b3d925343841647a5feeb325997/pyslsqp-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-02 23:11:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "anugrahjo",
    "github_project": "pyslsqp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "sphinx",
            "specs": [
                [
                    "==",
                    "7.3.7"
                ]
            ]
        },
        {
            "name": "sphinx_rtd_theme",
            "specs": [
                [
                    "==",
                    "2.0.0"
                ]
            ]
        },
        {
            "name": "sphinx-copybutton",
            "specs": [
                [
                    "==",
                    "0.5.2"
                ]
            ]
        },
        {
            "name": "sphinxcontrib-bibtex",
            "specs": [
                [
                    "==",
                    "2.6.2"
                ]
            ]
        },
        {
            "name": "myst-nb",
            "specs": [
                [
                    "==",
                    "1.1.0"
                ]
            ]
        },
        {
            "name": "numpydoc",
            "specs": [
                [
                    "==",
                    "1.7.0"
                ]
            ]
        },
        {
            "name": "setuptools",
            "specs": []
        },
        {
            "name": "ninja",
            "specs": []
        },
        {
            "name": "meson",
            "specs": []
        },
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "numpy",
            "specs": [
                [
                    "==",
                    "1.26.4"
                ]
            ]
        },
        {
            "name": "h5py",
            "specs": [
                [
                    "==",
                    "3.11.0"
                ]
            ]
        },
        {
            "name": "matplotlib",
            "specs": [
                [
                    "==",
                    "3.9.0"
                ]
            ]
        }
    ],
    "lcname": "pyslsqp"
}
        
Elapsed time: 0.24949s