release: python-pptx-extended 1.1.0#8
Open
MHoroszowski wants to merge 1 commit intomasterfrom
Open
Conversation
Rename distribution to python-pptx-extended for PyPI publication; the upstream python-pptx name is owned by Steve Canny on PyPI and cannot be reused. Import name (pptx) is unchanged so user code is unaffected. - pyproject.toml: name -> python-pptx-extended, add maintainer, fork description, fork repo URLs (Upstream URL preserved). - src/pptx/__init__.py: bump __version__ to 1.1.0. - README.rst: prepend fork notice listing the five added features and the install-conflict caveat with upstream. - HISTORY.rst: add 1.1.0 (2026-05-01) entry. Published to PyPI: https://pypi.org/project/python-pptx-extended/1.1.0/ Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
python-pptxtopython-pptx-extendedso the fork can be published (python-pptxis owned by Steve Canny on PyPI). The import name is unchanged (import pptx).__version__to1.1.0, adds a fork notice to README, and a HISTORY entry summarizing the five fork features merged into master prior to release: shadow effects, bullet/numbered lists, table cell borders, line cap/join, line end types.This PR is a metadata-only change; no library code is touched.
What was actually published
python_pptx_extended-1.1.0.tar.gzpython_pptx_extended-1.1.0-py3-none-any.whlimport pptx; pptx.__version__ == '1.1.0';Presentation()instantiates.Note on the v1.1.0 git tag
The
v1.1.0tag was pushed tooriginimmediately after the PyPI upload, but it points at the pre-release commit14ee64cfrather than this PR's release commit9a3ab2aa. The wheel on PyPI was built from this PR's tree. Once this PR merges, the tag should be force-updated to point at the merge commit sogit checkout v1.1.0matches the published artifact:```
git tag -fa v1.1.0 -m "python-pptx-extended 1.1.0"
git push origin v1.1.0 --force
```
Test plan
pyproject.tomlname,maintainers,description, and URLs read correctly__version__ == \"1.1.0\"in src/pptx/init.pyv1.1.0to the merge commit and force-push the tag🤖 Generated with Claude Code