-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Push the new versions to PyPI #276
Comments
Hello, if you could publish a new release based on current master, that would be really cool! |
IIRC more work is necessary to make the package work with recent Python versions, before we can make a release. |
I see. Do you have an overview what is still missing? We've been using the master branch with Python 3.10 and 3.11 now and at least for our use case it seems to be fine. But we probably don't cover the whole library, so there might be issues I'm not aware of. |
Ah wait, master does have a couple of commits that might explain. I'll try to find some time to refresh the project and make a release. |
Yeah, I'd hope that simply making a new version based on current master is enough. Fingers crossed that this is indeed the case and thanks for looking into it! |
Hi @saghul,
I'm one of the maintainer of Kathará, a container-based network emulator, and we have a dependency with
pyuv
.Now that the installation problem with
Python3.10
is fixed (#275), I'm wondering if it is possible to push the new version ofpyuv
to PyPI.The installation via
pip
(onPython3.10
) still returns the following error trace:I fixed the problem in the
setup.py
using the following requirement:However, PyPI does not allow dependencies on packages which are not also hosted on PyPI, and this leads to the following installation error:
python3 -m pip install kathara Collecting kathara Using cached kathara-3.5.1.tar.gz (126 kB) Preparing metadata (setup.py) ... done ERROR: Packages installed from PyPI cannot depend on packages which are not also hosted on PyPI. kathara depends on pyuv@ git+https://github.com/saghul/pyuv@master#egg=pyuv
Let me know if I can do something to help you.
Thanks,
Tommaso
The text was updated successfully, but these errors were encountered: