[pywps] 01/06: Imported Upstream version 4.0.0
Bas Couwenberg
sebastic at debian.org
Thu Dec 8 07:00:44 UTC 2016
This is an automated email from the git hooks/post-receive script.
sebastic pushed a commit to branch master
in repository pywps.
commit 99fdd7696c8b176119f1d8e68d1678b71b44bb94
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date: Thu Dec 8 07:46:31 2016 +0100
Imported Upstream version 4.0.0
---
VERSION.txt | 2 +-
debian/changelog | 10 ++++++++++
docs/demobuffer.py | 2 +-
pywps/__init__.py | 2 +-
pywps/app/WPSResponse.py | 2 +-
tests/process.py | 2 +-
6 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/VERSION.txt b/VERSION.txt
index 55be1c7..fcdb2e1 100644
--- a/VERSION.txt
+++ b/VERSION.txt
@@ -1 +1 @@
-4.0.0rc3
+4.0.0
diff --git a/debian/changelog b/debian/changelog
index a1d4cf0..d955af2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+pywps (4.0.0) trusty; urgency=medium
+
+ * New version of PyWPS
+ * New processes structure
+ * Logging to database, jobs control
+ * Jobs queue
+ * Saparated processes and PyWPS-Demo project
+
+ -- Jáchym Čepický <jachym.cepicky at opengeolabs.cz> Wed, 07 Dec 2016 10:54:43 +0100
+
pywps (4.0.0-alpha2) trusty; urgency=medium
* Re-did debian packaging for v4.0
diff --git a/docs/demobuffer.py b/docs/demobuffer.py
index 9d614fc..42a5a72 100644
--- a/docs/demobuffer.py
+++ b/docs/demobuffer.py
@@ -57,7 +57,7 @@ class DemoBuffer(Process):
version='1.0.0',
title='Buffer',
abstract='This process demonstrates, how to create any process in PyWPS environment',
- metadata=[Metadata('process metadata 1', 'http://example.org/1'), Metadata('process metadata 2', 'http://example.org/2')])
+ metadata=[Metadata('process metadata 1', 'http://example.org/1'), Metadata('process metadata 2', 'http://example.org/2')]
inputs=inputs,
outputs=outputs,
store_supported=True,
diff --git a/pywps/__init__.py b/pywps/__init__.py
index 94c1402..b2c2ab1 100644
--- a/pywps/__init__.py
+++ b/pywps/__init__.py
@@ -10,7 +10,7 @@ import os
from lxml.builder import ElementMaker
-__version__ = '4.0.0rc3'
+__version__ = '4.0.0'
LOGGER = logging.getLogger('PYWPS')
LOGGER.debug('setting core variables')
diff --git a/pywps/app/WPSResponse.py b/pywps/app/WPSResponse.py
index 2180c1c..110e395 100644
--- a/pywps/app/WPSResponse.py
+++ b/pywps/app/WPSResponse.py
@@ -121,7 +121,7 @@ class WPSResponse(object):
WPS.ProcessFailed(
WPS.ExceptionReport(
OWS.Exception(
- OWS.Exception(self.message),
+ OWS.ExceptionText(self.message),
exceptionCode='NoApplicableCode',
locater='None'
)
diff --git a/tests/process.py b/tests/process.py
index dfafe28..faa8451 100644
--- a/tests/process.py
+++ b/tests/process.py
@@ -38,7 +38,7 @@ class ProcessTestCase(unittest.TestCase):
ComplexInput("vector", title="Vector")
],
outputs=[],
- metadata=[Metadata('process metadata 1', 'http://example.org/1'), Metadata('process metadata 2', 'http://example.org/2')])
+ metadata=[Metadata('process metadata 1', 'http://example.org/1'), Metadata('process metadata 2', 'http://example.org/2')]
)
inputs = {
input.identifier: input.title
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/pywps.git
More information about the Pkg-grass-devel
mailing list