- Adapt to latest versions of importlib.metadata that don't allow for implicit None values.
- Fixed DeprecationWarning in metadata.hunt_down_url.
- Fixed issue in rendering non-unique keys in print-metadata.
- Add script for printing metadata.
- Add metadata.extract_email helper. Ref jaraco/jaraco.media#2.
- Moved metadata helpers to metadata module.
- In extract_author, expand the logic to support multiple authors in pyproject.toml form.
- Configure Sphinx earlier in 'config-inited', allowing other etxensions to rely on the produced values. (#16)
- Add support for other metadata fields since pyproject.toml shuffles things around. (#17)
- Add
metadata.load
for loading metadata from a source dir with support for a BUILD_ENVIRONMENT setting. Set BUILD_ENVIRONMENT=current to bypass isolation when loading metadata. Ref pypa/build#556. (#556)
- Deprecated use of environment variable for isolated builds. The workaround is in the wrong place and should be dealt with upstream. (#11)
- Add sidebar-links directive.
- Require Python 3.8 or later.
#7, #10, #11: Added environment variable to bypass building metadata for offline builds.
#6: Added minimal test to sphinx.packaging
.
Change requirement to build[virtualenv]
as workaround for
pypa/build#266.
Prefer build
to pep517
for loading package metadata.
Use pep517.meta to load package metadata. Adds support for packages without setup.py.
Removed info module (and setuptools show command).
Removed depends module. Use other packaging tools instead.
Rely on PEP 420 for namespace package.
Inject rst_epilog to include |project|
substitution.
Refresh package metadata.
In sphinx
when loading metadata, trap a ValueError to
include the offending value.
Require Python 3.6 or later.
Removed 'cheese' package as it was built for a use-case that is no longer needed, depends on deprecated functionality in setuptools, and is causing errors in tests (SSL).
Sphinx plugin now declares support for parallel reads (optimistically).
Sphinx plugin now exposes package_url
in HTML templates.
Switch to pkgutil namespace technique
for the jaraco
namespace.
Show command now also honors direct attributes on a Distribution instance.
#2: In Sphinx module, use universal newlines to avoid broken results on Windows.
Added jaraco.packaging.make-tree
utility for taking
output from pipdeptree and making a tree of it.
Drop support for Python 2.6.
Re-aligned to use pkg_resources-managed technique for the jaraco namespace, all package of which must elect one technique or another.
Use pkgutil for namespace package handling. Experimental process based on pypa/packaging.python.org#265.
Remove release
module.
Add Python 2.6 support for Sphinx extension.
Added Sphinx extension for loading several keys from their package metadata.
Removed pmxbot uploader.
Moved hosting to Github.
Add support for retaining the active bookmark after updating to tagged revision for release.
release
script no longer invokes register prior to the
upload. Instead, the user should either set the password
in .pypirc (not recommended) or use Setuptools 20.1 and
keyring to store the password securely.
Add show
distutils command for showing attributes of the
distribution.
Add packaging.depends.load_dependencies
.
Added --register
option to upload-package
command.
Added jaraco.packaging.cheese
and the upload-package
command from the
YouGov project of the same namesake.
Add 'dist_commands' to config so projects released with
jaraco.packaging.release
can specify which dist commands are run.
Added depends
module implementing a dependency-tree
command and
also a distutils Command dependency_tree
.