-
Notifications
You must be signed in to change notification settings - Fork 121
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
setup.py downloads missing from 1.1.0+ #791
Comments
I think you're wondering on exactly on the right lines. This likely is due to the dependency on
|
The package is missing a You could try going directly to wheel with By the way, the next release of setuptools will integrate the bdist_wheel command and wheel will start producing warnings if used. So this is likely about to stop working anyway. |
You would also need to use |
Thank you. Using |
It seems like there's a lot of change happening in this area of Python which is good. If this jar-downloading process is considered hacky and bound to stop working at some point anyway, I'll stop trying to fix the behaviour and do something else instead to make sure the files are there when needed. Thanks. |
@JaimeHolland What was your solution to this? It's hard to believe that this has gone unnoticed since 1.1.0. We are planning on pulling some of the code from setup.py to download the files in our Docker container. |
Python 3.11 and earlier tend to pre-install |
Yes, this is basically what I did as a hack until I find a cleaner / more up-to-date solution |
Ahh, wheel was removed in 70.1. So I think that's why this suddenly is showing up. 70.1+ won't be installing wheel at all because it's not used. |
Hi, I ran into a problem when trying to build the amazon_kclpy package
The setup.py file for this library downloads some JARs from Maven (and adds them to the wheel) that are required to get an application running.
In
build
version "1.0.3" this works. In version "1.1.0" onwards, the JARs are no longer being added to the wheel. I was wondering if this is because of a missing wheels dependency, i.e. #716, but I may be wrong.Do you have any advice about why this has happened, whether there is a workaround, or if the amazon_kclpy project needs to be brought up to date in some way?
The text was updated successfully, but these errors were encountered: