Skip to content
Merged
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.6.0
4.7.0
13 changes: 13 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
pywps (4.7.0) trusty; urgency=medium

* Skipped support for Python 3.8 and 3.9.
* Added support for Python 3.12 and 3.13.
* Security upgrade of numpy (#695) and urllib (#693).
* Added conda support (#696).
* Fixed linting (#694).
* Reconfigure CI and documentation (#692).
* Improve the content of default-config.cfg (#691).
* Uniform tab/spaces in WPS templates (#690).

-- Carsten Ehbrecht <ehbrecht@dkrz.de> Mon, 15 Dec 2025 18:00:00 +0000

pywps (4.6.0) trusty; urgency=medium

* Skip support for Python 3.7
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.6.0"
__version__ = "4.7.0"

LOGGER = logging.getLogger('PYWPS')
LOGGER.debug('setting core variables')
Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.6.0
current_version = 4.7.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)
Expand All @@ -16,5 +16,3 @@ replace = {new_version}

[coverage:run]
relative_files = True