importlib-resources 6.0.1-1 source package in Ubuntu

Changelog

importlib-resources (6.0.1-1) unstable; urgency=medium

  * Team upload.
  * New upstream version
  * Standards-Version: 4.6.2 (routine-update)
  * Testsuite: autopkgtest-pkg-python (routine-update)
  * Build-Depends: s/dh-python/dh-sequence-python3/ (routine-update)
  * Add salsa-ci file (routine-update)
  * Update lintian override info format in
    d/python3-importlib-resources.lintian-overrides on line 2-3, 5-6.
  * Set upstream metadata fields: Security-Contact.
  * d/control: add build-dep on pybuild-plugin-pyproject for pyproject.toml
  * d/tests/control: add autopkgtest using pytest

 -- Michael R. Crusoe <email address hidden>  Tue, 08 Aug 2023 20:16:50 +0200

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
Oracular release main misc
Noble release main misc
Mantic release main misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
importlib-resources_6.0.1-1.dsc 2.2 KiB b4b81354b14f321c60e1231710b7de75fc49fbe8430044fde2ff158335352f7d
importlib-resources_6.0.1.orig.tar.gz 37.8 KiB 4359457e42708462b9626a04657c6208ad799ceb41e5c58c57ffa0e6a098a5d4
importlib-resources_6.0.1-1.debian.tar.xz 2.7 KiB 7d61c80eced72523b1bc1fa8198e102a80543241af661d6b9fa14f8c10e2a5b4

Available diffs

No changes file available.

Binary packages built by this source

python3-importlib-resources: Read resources from Python packages

 importlib_resources is a backport of Python standard library
 importlib.resources module for older Pythons. Users of Python 3.9 and
 beyond should use the standard library module, since for these versions,
 importlib_resources just delegates to that module.
 .
 The key goal of this module is to replace parts of pkg_resources with a
 solution in Python's stdlib that relies on well-defined APIs. This makes
 reading resources included in packages easier, with more stable and
 consistent semantics.
 .
 This library provides two very simple decorators that document the
 publicness of the names in your module. They keep your module's __all__
 in sync so you don't have to.