Maik Riechert
Maik Riechert
Just debugged it a bit, and I was right, `resource_dict['uri']` is actually the string "None". Question is, where does that come from?
When I request the dataset through the CKAN API, I also get it back as `"uri":"None"`. I opened an issue in the main CKAN repo: https://github.com/ckan/ckan/issues/2716
I just saw that this extension actually exposes the catalog as RDF as well, but it doesn't support all the filtering options as the main API, like http://demo.ckan.org/api/3/action/package_search?q=spending I wonder...
I had a look at the ckanext-spatial extension. It says the `spatial` field must be a GeoJSON geometry. I assume ckanext-dcat follows the same convention, but I'm not sure what...
Ok, an easier way is to switch to that src directory which is for me "/usr/lib/ckan/default/src". From that one it works.
Actually, the real fix would be to add the run-time dependencies to setup.py's `install_requires`. And also include a small section on how to set up a dev installation like here:...
What's the status for SVG support? I just tried to use https://github.com/openbases/openbases-pdf and got "rsvg-convert: createProcess: runInteractiveProcess: exec: does not exist (No such file or directory)".
You can't really dereference them. Since `discriminator` only works if you have referenceable schemas, the right way to go would be to drop `discriminator` during dereferencing, otherwise the resulting OpenAPI...
Same problem here. Using GitHub Actions and building within the quay.io/pypa/manylinux2014_aarch64 docker image. I note that 1.1.1 has manylinux2014_aarch64 wheels, whereas 1.2.0 does not. Previously my build wouldn't fail as...
Looking at the pyproject.toml there is no variant that applies to Python 3.7 and aarch64: "numpy==1.17.3; python_version=='3.7' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_machine!='aarch64' and platform_python_implementation != 'PyPy'",