-
Notifications
You must be signed in to change notification settings - Fork 3
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
ERROR using SNAP 10 #83
Comments
Does @ninsbl perhaps have a suggestion here? |
Hmm. We have not moved to SNAP 10 yet, and we actually use actinia-ubuntu because our workflows require pytorch which we could not get working in alpine... (BTW: Ubuntu builds are much faster and the size advantage of alpine is almost gone once heavy packages like pytorch and torchvision are installed...). |
Is that still an issue? I am about to move to SNAP 10 on UBUNTU as well. FROM alpine:3.18 as version
RUN apk add python3 py3-pip postgresql-dev gcc python3-dev musl-dev
RUN python3 -m pip install --break-system-packages pyrosar>=0.26 |
Yes it is still an issue. We have not tried it again. We are using now |
FROM alpine:3.20 as version
RUN apk add python3 py3-pip postgresql-dev gcc python3-dev musl-dev
RUN python3 -m pip install --break-system-packages pyrosar>=0.26 seems to work fine as well... |
Indeed the pyrosar version with above commands would still have pyrosar 0.24.0 installed without notice or warning!
|
Hi. I am the maintainer of pyroSAR. Unfortunately I had to place an upper limit on the Python version in johntruckenbrodt/pyroSAR#293. From version 0.25.0 on, pyroSAR does have this limit. I did not however fix all previous versions. I understand this is inconvenient. If python>=3.11 is used, an older version of pyroSAR is installed and users don't see what's happening. |
Thanks for you feedback, @johntruckenbrodt! |
@neteler I just opened a new PR to test it in the Ubuntu CI/CD pipeline: |
The newly released version 0.27.0 should fix it. |
When trying to update to
SNAP 10
(see mundialis/esa-snap#41), the following error occurred:In the log file the version is listed as:
The installed
pyroSAR
version is too old (0.24.0), but alpine 3.18 does not install the new version (0.26.0). OnlypyronSAR>=0.26.0
ist compatibe with SNAP 10.For the new SNAP version
openjdk11
has to be installed to change here.The text was updated successfully, but these errors were encountered: