Closed idanmiara closed 3 years ago
Not sure why 3.6 failed and 3.7 got canceled...
@cehbrecht Could you review please?
Barring a few changes, looks good. I leave @cehbrecht to do the approval.
Thanks for your review!
PyWPS seems to be failing for Python3.6. Looking into this now.
Finally it's ready!
I'm confused by the diff ... why is tests/processes/metalinkprocess.py
shown as deleted and then added?
Oh! It's because the example process was originally in the docs and then was referred to within the processes
. How strange! Good catch. This is a much better approach.
I'm confused by the diff ... why is
tests/processes/metalinkprocess.py
shown as deleted and then added?
As @Zeitsperre wrote, there was a symlink between the file at the docs to the source dir. Symlinks are not compatible with Windows, so I've moved the file to the source dir and referenced it from the docs instead of a symlink. I've tried to do it in one commit but git does not change the status of the file from symlink to regular file, so I ended up removing the symlink and then moving the file and update the rst reference
@idanmiara @Zeitsperre I might use pywps.util
instead of pywps.uri
... I leave the vote to you :) I will merge then.
@idanmiara @Zeitsperre I might use
pywps.util
instead ofpywps.uri
done. Is the CI broken now ?
@idanmiara It is but not because of you. The fix is quite simple if you want to add it. In .github/workflows/main.yml
:
sudo apt-get -y install gdal-bin libgdal-dev libnetcdf-dev libhdf5-dev
Should be changed to:
sudo apt-get update && sudo apt-get -y install gdal-bin libgdal-dev libnetcdf-dev libhdf5-dev
I don't think either of us has access to the GithHub action. @cehbrecht ?
@idanmiara It is but not because of you. The fix is quite simple if you want to add it. In
.github/workflows/main.yml
:sudo apt-get -y install gdal-bin libgdal-dev libnetcdf-dev libhdf5-dev
Should be changed to:
sudo apt-get update && sudo apt-get -y install gdal-bin libgdal-dev libnetcdf-dev libhdf5-dev
I don't think either of us has access to the GithHub action. @cehbrecht ?
you can update it in this PR changing the workflow: https://github.com/geopython/pywps/blob/pywps-4.4/.github/workflows/main.yml
@idanmiara It is but not because of you. The fix is quite simple if you want to add it. In
.github/workflows/main.yml
:sudo apt-get -y install gdal-bin libgdal-dev libnetcdf-dev libhdf5-dev
Should be changed to:
sudo apt-get update && sudo apt-get -y install gdal-bin libgdal-dev libnetcdf-dev libhdf5-dev
I don't think either of us has access to the GithHub action. @cehbrecht ?
you can update it in this PR changing the workflow: https://github.com/geopython/pywps/blob/pywps-4.4/.github/workflows/main.yml
Of course! I was looking at the master
and got very confused as to why I couldn't find it. I forget that we don't base directly off master for this project.
@idanmiara It is but not because of you. The fix is quite simple if you want to add it. In
.github/workflows/main.yml
:sudo apt-get -y install gdal-bin libgdal-dev libnetcdf-dev libhdf5-dev
Should be changed to:
sudo apt-get update && sudo apt-get -y install gdal-bin libgdal-dev libnetcdf-dev libhdf5-dev
I don't think either of us has access to the GithHub action. @cehbrecht ?
you can update it in this PR changing the workflow: https://github.com/geopython/pywps/blob/pywps-4.4/.github/workflows/main.yml
Of course! I was looking at the
master
and got very confused as to why I couldn't find it. I forget that we don't base directly off master for this project.
done, now it works :)
Overview
Resolved all the issues that prevented the tests to pass on Windows.
Contribution Agreement
(as per https://github.com/geopython/pywps/blob/master/CONTRIBUTING.rst#contributions-and-licensing)