You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Platform- and environment-independently downloading the latest release in automation software is flaky.
Background
In our workflow, we would like to build a Python wrapper around a C library. If possible, we would like to do so within the Python package builder without having to care about any C++ package manager. The user should be able to install the Wheel of the Python package while only depending on other Python packages.
In our ecosystem, we enable the above, by downloading the latest released version of the msgpack-cxx package in automation and scripts via the GitHub API. However, the GitHub API has a rate limit that is very regularly exceeded, resulting in 403 errors (see for example this pipeline). A workaround could be to use the direct HTTPS URL instead of the API, but that also has a rate limit, albeit a bit higher. It would be no more than a temporary fix.
Proposed solution
Push the msgpack-cxx header-only package to multiple package managers for platform- and environment-independent usage.
Issue
Platform- and environment-independently downloading the latest release in automation software is flaky.
Background
In our workflow, we would like to build a Python wrapper around a C library. If possible, we would like to do so within the Python package builder without having to care about any C++ package manager. The user should be able to install the Wheel of the Python package while only depending on other Python packages.
In our ecosystem, we enable the above, by downloading the latest released version of the
msgpack-cxx
package in automation and scripts via the GitHub API. However, the GitHub API has a rate limit that is very regularly exceeded, resulting in403
errors (see for example this pipeline). A workaround could be to use the direct HTTPS URL instead of the API, but that also has a rate limit, albeit a bit higher. It would be no more than a temporary fix.Proposed solution
Push the
msgpack-cxx
header-only package to multiple package managers for platform- and environment-independent usage.Describe alternatives you have considered
msgpack-cxx
package in HomeBrew is not platform independentmsgpack-cxx
package in conda-forge may not be available everywhere by design (e.g.: when building Python bindings for non-conda environments)msgpack-cxx
package in PyPI is an independent repackaging of themsgpack-cxx
package in HomeBrew our organization created in this repo.msgpack-cxx
package in PyPI to the msgpack organizationThe text was updated successfully, but these errors were encountered: