File: control

package info (click to toggle)
python-deprecation 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 188 kB
  • sloc: python: 451; makefile: 15
file content (34 lines) | stat: -rw-r--r-- 1,161 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Source: python-deprecation
Maintainer: Debian Python Modules Team <python-modules-team@alioth-lists.debian.net>
Uploaders:
 Ondřej Kobližek <kobla@debian.org>,
 Ondřej Nový <onovy@debian.org>,
Section: python
Priority: optional
Build-Depends:
 debhelper-compat (= 13),
 dh-python,
 python3-all,
 python3-setuptools,
Build-Depends-Indep:
 python3-packaging,
 python3-unittest2,
Standards-Version: 4.5.0
Homepage: https://github.com/briancurtin/deprecation
Vcs-Browser: https://salsa.debian.org/python-team/modules/python-deprecation
Vcs-Git: https://salsa.debian.org/python-team/modules/python-deprecation.git
Testsuite: autopkgtest-pkg-python
Rules-Requires-Root: no

Package: python3-deprecation
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
Description: Library to handle automated deprecations
 Deprecation is a library that enables automated deprecations.
 .
 It offers the deprecated() decorator to wrap functions, providing proper
 warnings both in documentation and via Python’s warnings system, as well as
 the deprecation.fail_if_not_removed() decorator for test methods to ensure
 that deprecated code is eventually removed.