python-public 4.0-1 source package in Ubuntu

Changelog

python-public (4.0-1) unstable; urgency=medium

  * New upstream version 4.0 (closes: #970146)
  * d/clean: Removed build artifacts pack
  * d/docs: Removed file
  * d/control:
     - Added pybuild-plugin-pyproject and python3-pdm-backend to Build-Depends
     - Added python-public-doc binary package
     - Bumped Standards-Version to 4.6.2
     - Maintainer is now Debian Python Team and added myself to Uploaders
     - Reformatted the code with wrap-and-sort -ast
     - Removed python3-setuptools from Build-Depends field
     - Removed unnecessary subroutine for "all" architecture
     - Updated long description
     - Updated Homepage field to the new location (gitlab.com)
  * d/patches:
     - Added 001.fixed-module-path-and-version.patch fix module path and version
     - Removed 0001-Add-support-for-new-Sybil.patch, fixed in new version
  * d/python-public-doc*: Added file to build documentation sphinx
  * d/README.source: Reported of the particularities of the packages
  * d/rules:
     - Adjusted for building the sphinx documentation
     - Disabled tests for now as they are crashing in build
  * d/upstream/signing-key.asc: Drop, upstream releases are not signed anymore
  * d/watch:
     - Updated watchfile to use gitlab.com
     - Updated to version 4
     - Removed pgpsigurlmangle option in watch file

 -- Josenilson Ferreira da Silva <email address hidden>  Sun, 01 Oct 2023 22:58:30 -0300

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-public_4.0-1.dsc 2.3 KiB 0e719c928af92e1e7b199a56dfb8d80159de329d5b7195ac3c256bf085f48068
python-public_4.0.orig.tar.gz 48.5 KiB 7bb8b62ba9106569f475366b12f41d4f1d20575e3ae0daa530d474219f18e2ea
python-public_4.0-1.debian.tar.xz 5.0 KiB 7148d23f4e9049ea2dd1c3b923af0a246fd010d83a343736cd4431bb91d4ee27

Available diffs

No changes file available.

Binary packages built by this source

python-public-doc: @public decorator for adding names to _all_(common documentation)

 His module is a library that provides two simple decorators called @public
 and @private to document the publicity of names in your Python module. These
 decorators are used to control what will be imported when someone uses the
 from <module> import * statement. It's usually good practice to use a special
 attribute called __all__ to explicitly list the public names you want exposed
 in your module.
 .
 This package installs the common documentation package.

python3-public: @public decorator for adding names to __all__

 His module is a library that provides two simple decorators called @public
 and @private to document the publicity of names in your Python module. These
 decorators are used to control what will be imported when someone uses the
 from <module> import * statement. It's usually good practice to use a special
 attribute called __all__ to explicitly list the public names you want exposed
 in your module.