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.7.0
4.8.0
11 changes: 11 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
pywps (4.8.0) trusty; urgency=medium

* Tests that require specific optional libraries have been marked as such (#699).
* Packaging now uses pyprojec.toml and adheres to PEPs 517 and 621 (#701).
* Now supports explicit path validation for complex inputs (#704).
* LAS/LAZ point cloud formats now better supported (#702).
* CI testing now uses explicit commit hashes for Actions and Python CI dependencies (#703).
* Project now uses Trusted Publisher for deploying packages to PyPI. (#709).

-- Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com> Wed, 02 Sep 2026 21:00:00 +0000

pywps (4.7.0) trusty; urgency=medium

* Skipped support for Python 3.8 and 3.9.
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.7.0"
current_version = "4.8.0"
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.7.0"
__version__ = "4.8.0"

LOGGER = logging.getLogger('PYWPS')
LOGGER.debug('setting core variables')
Expand Down
Loading