Skip to content
Snippets Groups Projects
Commit d0649cac authored by Ondřej Nový's avatar Ondřej Nový
Browse files

Drop Python 2 support.

parent fc7dd604
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ python-bottle-sqlite (0.1.3-3) UNRELEASED; urgency=medium
* d/copyright: Use https protocol in Format field
* Convert git repository from git-dpm to gbp layout
* Use debhelper-compat instead of debian/compat.
* Drop Python 2 support.
-- Ondřej Nový <onovy@debian.org> Tue, 13 Feb 2018 10:09:50 +0100
......
......@@ -4,31 +4,12 @@ Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>
Build-Depends: debhelper-compat (= 9), dh-python,
python-all,
python3-all,
Standards-Version: 4.1.0
Homepage: http://bottlepy.org/docs/dev/plugins/sqlite.html
Vcs-Git: https://salsa.debian.org/python-team/modules/python-bottle-sqlite.git
Vcs-Browser: https://salsa.debian.org/python-team/modules/python-bottle-sqlite
Package: python-bottle-sqlite
Architecture: all
Depends: ${misc:Depends}, ${python:Depends},
Recommends: ${python:Recommends}
Suggests: ${python:Suggests}
Description: SQLite3 integration for Bottle - Python 2.X
Bottle-sqlite is a plugin that integrates SQLite3 with your Bottle
application. It automatically connects to a database at the beginning of a
request, passes the database handle to the route callback and closes the
connection afterwards.
.
To automatically detect routes that need a database connection, the plugin
searches for route callbacks that require a `db` keyword argument
(configurable) and skips routes that do not. This removes any overhead for
routes that don't need a database connection.
.
This package provides the Python 2.x module.
Package: python3-bottle-sqlite
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends},
......
......@@ -2,4 +2,4 @@
export PYBUILD_NAME=bottle-sqlite
%:
dh $@ --with python3,python2 --buildsystem=pybuild
dh $@ --with python3 --buildsystem=pybuild
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment