importlib-resources 6.4.0-1 source package in Ubuntu

Changelog

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

  * Team upload.
  * New upstream release. (Closes: #1072826)
  * debian/gbp.conf: Use ignore-branch = True.
  * debian/control: Bump Standards-Version to 4.7.0.
  * debian/patches/:
    + 0001-tests-compat-py39.py-Drop-py39compat-to-avoid-jaraco.patch:
      Add patch to avoid using unpackaged jaraco.test. This requires
      the python version to be 3.10+.

 -- Boyuan Yang <email address hidden>  Mon, 17 Jun 2024 12:27:22 -0400

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 proposed main misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
importlib-resources_6.4.0-1.dsc 2.3 KiB a311c9878167c3fa230618a42a40b6800ee42c4a42aaf8b6997f6ec6405f7e14
importlib-resources_6.4.0.orig.tar.gz 41.1 KiB cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145
importlib-resources_6.4.0-1.debian.tar.xz 3.4 KiB 756c1a5353e0bf7e565f84d272e66095bd71ae9dff43488f48f7bfd17225f1fd

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.