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
pywin32 for python 3.4 is no longer supported (pywin32>=223) #1700
Comments
I managed to build my own pywin32 223 wheel, details here: mhammond/pywin32#1172 |
The problem is that there's no old version of pywin32, which supports Python 3.4. Let's see if maintainers can publish it. |
I think, this might become a solution: https://github.com/cherrypy/cherrypy/compare/bugfix/limit-pypywin32-ver-for-py34 |
Perfect, it should work and avoid the issue on further relases of pywin32. Thanks! |
If someone else is a bit stuck with this dependency problem: I'm trying with a workaround until the next Cherrypy release. Basically I'm installing the cherrypy dependencies, pywin32 221 and finally installing Cherrypy with the --no-dependencies flag of pip.
cherrypy.txt (From the install requires of cherrypy setup.py)
I have a working 221 wheel that I made from a exe that I found on sourceforge) but I suppose that it works with the 219 too. |
You can also have pypiwin32==219 And do: pip install -c constraints.txt cherrypy |
Perfect, everything seems to be working again :) Thanks! |
Thank you this method works perfects |
Do you want to request a feature or report a bug?
bug
What is the current behavior?
Cherrypy can't be installed on a Windows Python 3.4 environment. Pywin32 dependency is set to > 223, and 223 version doesn't exists for Python 3.4, they no longer support it.
Error installing cherrypy:
Could not find a version that satisfies the requirement pywin32>=223 (from pypiwin32; sys_platform == "win32"->cherrypy) (from versions: 221) No matching distribution found for pywin32>=223 (from pypiwin32; sys_platform == "win32"->cherrypy)
If the current behavior is a bug, please provide the steps to reproduce and if possible a screenshots and logs of the problem.
pip install cherrypy
What is the expected behavior?
Successful install
What is the motivation / use case for changing the behavior?
Support Cherrypy on python 3.4 (Windows)
Please tell us about your environment:
The text was updated successfully, but these errors were encountered: