Skip to content

Commit f646d39

Browse files
authored
Merge pull request #689 from cehbrecht/prepare-release-4.6.2_2nd-try
prepare release 4.6.0
2 parents 802a6a2 + 8481191 commit f646d39

File tree

5 files changed

+24
-5
lines changed

5 files changed

+24
-5
lines changed

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.5.2
1+
4.6.0

debian/changelog

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
pywps (4.6.0) trusty; urgency=medium
2+
3+
* Skip support for Python 3.7
4+
* Update validate geojson (#680).
5+
* Sanitize test suite (#684, #683, #682, #681).
6+
* Support Python3.10/3.11, documentation fixes, and general codebase cleanup (#677).
7+
* Extended env variable interpolation (#675)
8+
* Don't use deprecated distutils module (#672).
9+
* Fixed tox.ini parameter passenv (#670).
10+
* Improve the implementation of pywps.inout.literaltypes (#668).
11+
* Fix tests/test_capabilities.py with correct check of request case (#665).
12+
* Activate async test (#664).
13+
* Move Sleep process definition (#663).
14+
* Remove use of mutable as default value in Process.__init__ (#660).
15+
* Better handle of crashed processes (#659).
16+
* Change coveralls branch from master to main (#655).
17+
18+
-- Carsten Ehbrecht <ehbrecht@dkrz.de> Wed, 01 Nov 2023 18:00:00 +0000
19+
20+
121
pywps (4.5.2) trusty; urgency=medium
222

323
* Fix test section in README.md about pytest (#653)

pywps/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from lxml.builder import ElementMaker
1010

11-
__version__ = "4.5.2"
11+
__version__ = "4.6.0"
1212

1313
LOGGER = logging.getLogger('PYWPS')
1414
LOGGER.debug('setting core variables')

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.5.2
2+
current_version = 4.6.0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)
@@ -24,3 +24,4 @@ ignore =
2424
W606
2525
max-line-length = 120
2626
exclude = tests
27+

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
# licensed under MIT, Please consult LICENSE.txt for details #
44
##################################################################
55

6-
import sys
7-
86
from setuptools import find_packages, setup
97

108
with open("VERSION.txt") as ff:

0 commit comments

Comments
 (0)