Commit dd6bbf3c authored by Hartmut Goebel's avatar Hartmut Goebel
Browse files

Release 0.8.

parents 9a1e7269 5d7c2fc6
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
*.py[co]
*~
.#*
\#*\#

/venv
/build
+18 −13
Original line number Diff line number Diff line
@@ -14,28 +14,33 @@ before_script:
  # Generate test input-file (using Scons for this is overhead)
  - python test/gen-chessboard.py test/chessboard.pdf

python2.7:
  image: python:2.7
python3.6:
  image: python:3.6
  script:
    - tox -e py27
    - tox -e py36

python3.4:
  image: python:3.4
python3.7:
  image: python:3.7
  script:
    - tox -e py34
    - tox -e py37

python3.5:
  image: python:3.5
python3.9:
  image: python:3.8
  script:
    - tox -e py35
    - tox -e py38

python3.6:
  image: python:3.6
python3.9:
  image: python:3.9
  script:
    - tox -e py36
    - tox -e py39

python3.10:
  image: python:3.10
  script:
    - tox -e py310

linters:
  image: python:3.5
  image: python:3.9
  script:
    # For now only check the readme
    - tox -e readme
+14 −3
Original line number Diff line number Diff line
0.7.post1 (2018-07-03)
----------------------

* Fix packaging: documentaion was missing in source tarball.
0.8 (2022-06-27)
----------------

* Be less strict when reading PDF files.

* Enhance some help messages.

* Drop support for Python 2 and Python <= 3.5. Minimum supported versions are
  now 3.6 to 3.10.

* Internal changes:

  - Update required version of `PyPDF` to 2.1.1.
  - Enhance code quality.


0.7 (2018-06-24)
+5 −5
Original line number Diff line number Diff line
@@ -7,9 +7,9 @@ Scale and tile PDF images/pages to print on multiple pages.
-------------------------------------------------------------

:Author:    Hartmut Goebel <h.goebel@crazy-compilers.com>
:Version:   Version 0.7.post1
:Copyright: 2008-2018 by Hartmut Goebel
:Licence:   GNU Public Licence v3 (GPLv3)
:Version:   Version 0.8.dev0
:Copyright: 2008-2022 by Hartmut Goebel
:License:   GNU Public License v3 or later (GPL-3.0-or-later)
:Homepage:  https://pdfposter.readthedocs.io/

``Pdfposter`` can be used to create a large poster by building it from
@@ -32,9 +32,9 @@ Requirements and Installation

``Pdfposter`` requires

* `Python`__  (tested 2.7 and 3.4—3.6, but newer versions should work, too),
* `Python`__  (3.6—3.10, but newer versions should work, too),
* `setuptools`__ or `pip`__ for installation, and
* `PyPDF2`__.
* `PyPDF2`__ (2.1.1 or newer).

__ https://www.python.org/download/
__ https://pypi.org/project/setuptools
+1 −1
Original line number Diff line number Diff line
# -*- mode: python ; coding: utf-8 -*-
#
# Copyright 2008-2018 by Hartmut Goebel <h.goebel@crazy-compilers.com>
# Copyright 2008-2022 by Hartmut Goebel <h.goebel@crazy-compilers.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Loading