-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
requirements-dev.txt: "Could not find a version that satisfies the requirement pyqt" #26838
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
Comments
(seen in #26818). |
This reverts commit a284ac8. Breaks CI, see pandas-dev#26838
@jgehrcke : We can either put pyqt5 package in the requirement.txt but it's supported only in python3 . |
We're python3 only now. |
What's bringing in the qt dependency? The clipboard tests? |
yup and in this commit jgehrcke@c3b5a24 pyqt5 is misspelled and maybe they rolledback due to that reason. |
@dhirensr in my patch shown in this issues description (first comment above) you can see:
What's misspelled here? Mhm. As I wrote above this breaks the pandas CI with
which, I suppose, can be fixed easily -- it just wasn't my priority, and instead I opened this issue here. |
@jgehrcke : i mean it should be PyQt5 and not pyqt5 anyways.Note p and q are capital |
capitalization shouldn't matter for pip. pip will normalize them. The TODO for this issue is to
|
I followed the contributors guide and set up the dev environment without anaconda. Generally works, except for a small problem in
which fails with
pyqt
is not known on PyPI and I resolved the problem by replacing it withpyqt5
, i.e. with the following patch:But that does not pass CI because of
From here I am "giving up" but I would at least like to leave this report.
The text was updated successfully, but these errors were encountered: