forked from josch/img2pdf
release version 0.3.5
This commit is contained in:
parent
9d184ad0cd
commit
6da2bc3aee
3 changed files with 8 additions and 2 deletions
|
@ -2,6 +2,12 @@
|
|||
CHANGES
|
||||
=======
|
||||
|
||||
0.3.5 (2020-04-28)
|
||||
------------------
|
||||
|
||||
- remove all Python 2 support
|
||||
- disable pdfrw by default
|
||||
|
||||
0.3.4 (2020-04-05)
|
||||
------------------
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -1,7 +1,7 @@
|
|||
import sys
|
||||
from setuptools import setup
|
||||
|
||||
VERSION = "0.3.4"
|
||||
VERSION = "0.3.5"
|
||||
|
||||
INSTALL_REQUIRES = (
|
||||
'Pillow',
|
||||
|
|
|
@ -42,7 +42,7 @@ try:
|
|||
except ImportError:
|
||||
pass
|
||||
|
||||
__version__ = "0.3.4"
|
||||
__version__ = "0.3.5"
|
||||
default_dpi = 96.0
|
||||
papersizes = {
|
||||
"letter": "8.5inx11in",
|
||||
|
|
Loading…
Reference in a new issue