Skip to content
Commits on Source (5)
pywps (4.2.2-2) UNRELEASED; urgency=medium
pywps (4.2.3-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.4.1, no changes.
* Add patch to fix version.
-- Bas Couwenberg <sebastic@debian.org> Mon, 30 Sep 2019 19:57:16 +0200
-- Bas Couwenberg <sebastic@debian.org> Wed, 30 Oct 2019 12:22:19 +0100
pywps (4.2.2-1) unstable; urgency=medium
......
offline-tests.patch
use-mathjax-package.patch
privacy-breach.patch
version.patch
Description: Fix version.
Author: Bas Couwenberg <sebastic@debian.org>
Bug: https://github.com/geopython/pywps/issues/500
--- a/VERSION.txt
+++ b/VERSION.txt
@@ -1 +1 @@
-4.3
+4.2.3
......@@ -183,7 +183,7 @@ configuration file <https://docs.pycsw.org/en/latest/configuration.html>`_.
:database:
Connection string to database where the login about requests/responses is to be stored. We are using `SQLAlchemy <https://docs.sqlalchemy.org/en/latest/core/engines.html#database-urls>`_
please use the configuration string. The default is SQLite3 `:memory:` object.
please use the configuration string. The default is SQLite3 `:memory:` object, however this has `known issues <https://github.com/geopython/pywps/issues?utf8=%E2%9C%93&q=is%3Aissue+async+sqlite>`_ with async processing and should be avoided.
[grass]
......
......@@ -32,6 +32,6 @@
{% endfor %}
</ows:AllowedValues>
{% endif %}
{% if put.data is not none %}
{% if put.data is defined and put.data is not none %}
<DefaultValue>{{ put.data }}</DefaultValue>
{% endif %}