Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.8.0
4.8.1
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
pywps (4.8.1) trusty; urgency=medium

* Async test that was failing for Debian builds has been marked xfail. (#711).

-- Trevor James Smith <smith.trevorj@ouranos.ca> Mon, 21 Sep 2026 21:00:00 +0000

pywps (4.8.0) trusty; urgency=medium

* Tests that require specific optional libraries have been marked as such (#699).
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ s3 = ["boto3"]
joblauncher = "pywps.processing.job:launcher"

[tool.bumpversion]
current_version = "4.8.0"
current_version = "4.8.1"
commit = false
tag = false
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
Expand Down
2 changes: 1 addition & 1 deletion pywps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from lxml.builder import ElementMaker

__version__ = "4.8.0"
__version__ = "4.8.1"

LOGGER = logging.getLogger('PYWPS')
LOGGER.debug('setting core variables')
Expand Down
2 changes: 1 addition & 1 deletion tests/test_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def setUp(self) -> None:
# Running processes using the MultiProcessing scheduler and a file-based database
configuration.CONFIG.set('processing', 'mode', 'distributed')

@pytest.mark.xfail(platform.system() == "Darwin", reason="Response failures on macOS.")
@pytest.mark.xfail(reason="WPS request sometimes returns 500 Internal Server Error depending on infrastructure.", strict=False)
def test_async(self):
client = client_for(Service(processes=[Sleep()]))
wps = WPSExecution()
Expand Down
Loading