From 8bf010cd7f5f7098e3e212596e5f5533d60e25f8 Mon Sep 17 00:00:00 2001 From: Angelos Tzotsos Date: Wed, 26 Aug 2020 15:11:06 +0300 Subject: [PATCH] Dropping Python 2 support from debian packages (#521) --- debian/changelog | 6 ++++++ debian/control | 18 ------------------ debian/rules | 2 +- 3 files changed, 7 insertions(+), 19 deletions(-) diff --git a/debian/changelog b/debian/changelog index 25280b7..c1b79d6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pygeoapi (0.8.0-1~bionic1) bionic; urgency=medium + + * Drop support for Python 2 + + -- Angelos Tzotsos Wed, 26 Aug 2020 14:00:00 +0200 + pygeoapi (0.8.0-1~bionic0) bionic; urgency=medium * Support for ES7 diff --git a/debian/control b/debian/control index 2b914cb..e339509 100644 --- a/debian/control +++ b/debian/control @@ -5,30 +5,12 @@ Maintainer: Tom Kralidis Uploaders: Angelos Tzotsos Build-Depends: debhelper (>= 9), dh-python, - python-all, - python-setuptools, python3-all, python3-setuptools Standards-Version: 4.3.0 Vcs-Git: https://github.com/geopython/pygeoapi.git Homepage: https://pygeoapi.io/ -Package: python-pygeoapi -Architecture: all -Depends: ${python:Depends}, - python-pkg-resources, - python-click, - python-dateutil, - python-flask, - python-tz, - python-unicodecsv, - python-yaml, - ${misc:Depends} -Suggests: python-elasticsearch, python-fiona, python-geojson, python-rasterio -Description: pygeoapi provides an API to geospatial data. - . - This package the pygeoapi module for Python 2. - Package: python3-pygeoapi Architecture: all Depends: ${python3:Depends}, diff --git a/debian/rules b/debian/rules index 0196377..d5dc2d0 100755 --- a/debian/rules +++ b/debian/rules @@ -7,7 +7,7 @@ export PYBUILD_NAME=pygeoapi %: - dh $@ --with python2,python3 --buildsystem pybuild + dh $@ --with python3 --buildsystem pybuild override_dh_auto_test: @echo "nocheck set, not running tests"