File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed
Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 33 Release History
44---------------
55
6+ 0.6.23 (2023-11-02)
7+ +++++++++++++++++++
8+
9+ - fix: #912 Pillow<=9.5 constraint entails security vulnerability
10+
11+
6120.6.22 (2023-08-28)
713+++++++++++++++++++
814
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ BEHAVE = behave
22MAKE = make
33PYTHON = python
44SETUP = $(PYTHON ) ./setup.py
5+ TWINE = $(PYTHON ) -m twine
56
67.PHONY : accept build clean cleandocs coverage docs opendocs
78
4041
4142opendocs :
4243 open docs/.build/html/index.html
44+
45+ test-upload : build
46+ $(TWINE ) upload --repository testpypi dist/*
47+
48+ upload : clean build
49+ $(TWINE ) upload dist/*
Original file line number Diff line number Diff line change 22
33"""Initialization module for python-pptx package."""
44
5- __version__ = "0.6.22 "
5+ __version__ = "0.6.23 "
66
77
88import pptx .exc as exceptions
You can’t perform that action at this time.
0 commit comments