-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Support requiring from developmental releases #875
Comments
Your usage should work (and has worked for me in the past). What happens when you run |
Hmm, it's the same output (btw. I'm on 09:06 $ easy_install -i https://INTRA-PYPI/index/+simple/ mypackage==1.0.0.dev1
Searching for mypackage==1.0.0.dev1
Reading https://INTRA-PYPI/index/+simple/mypackage/
Authenticating as musttu for https://INTRA-PYPI/index/+simple/mypackage/ (from .pypirc)
No local packages or working download links found for mypackage==1.0.0.dev1
error: Could not find suitable distribution for Requirement.parse('mypackage==1.0.0.dev1')
We are running |
It's working for me.
Perhaps there is an issue with the authentication. I notice your output is slightly different from mine.
I've never used a devpi server which required authentication for reading. Or perhaps the server doesn't require it, but easy_install is assuming it. I'll need you to do some more investigation and trace the behavior to find where it's failing in your environment. |
Thanks. And interesting. Our devpi indeed does not require authentication, but looks like setuptools uses it (from It seems my problems pour in from something else - I cannot install any in-house packages through |
Uhh, how stupid am I? I forgot So, false alarm, I will close this and just stick with However, do you want me to open another ticket about this bit below?
Also, if you omit |
And offtopic: any plans to merge |
Not really, since it doesn't appear to be causing any problems... and will likely be replaced. Thanks. |
With following in
setup.py
:python setup.py develop
:Looks like it searches PyPI (or our company-devpi in this case) for matching version, but just doesn't find/accept one when you use developmental release as version identifier.
https://www.python.org/dev/peps/pep-0440/#developmental-releases
The text was updated successfully, but these errors were encountered: