From 8cd9d6a1993760dae8b557b57ef8a229be50b909 Mon Sep 17 00:00:00 2001 From: Manuel Barkhau Date: Fri, 15 Feb 2019 00:17:46 +0100 Subject: [PATCH] reenable py3.5 --- makefile.config.make | 2 +- src/pycalver/rewrite.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile.config.make b/makefile.config.make index 7e60384..48184dd 100644 --- a/makefile.config.make +++ b/makefile.config.make @@ -18,4 +18,4 @@ DEVELOPMENT_PYTHON_VERSION := python=3.6 # - python=3.7 # - pypy2.7 # - pypy3.5 -SUPPORTED_PYTHON_VERSIONS := python=2.7 python=3.6 python=3.7 pypy2.7 pypy3.5 +SUPPORTED_PYTHON_VERSIONS := python=2.7 python=3.5 python=3.6 python=3.7 pypy2.7 pypy3.5 diff --git a/src/pycalver/rewrite.py b/src/pycalver/rewrite.py index 86c7d6c..fb291a9 100644 --- a/src/pycalver/rewrite.py +++ b/src/pycalver/rewrite.py @@ -100,9 +100,9 @@ def iter_rewritten( ... '# This file is part of the pycalver project', ... '# https://gitlab.com/mbarkhau/pycalver', ... '#', - ... '# Copyright (c) 2018 Manuel Barkhau (mbarkhau@gmail.com) - MIT License', + ... '# Copyright (c) 2019 Manuel Barkhau (mbarkhau@gmail.com) - MIT License', ... '# SPDX-License-Identifier: MIT', - ... '"""PyCalVer: Automatic CalVer Versioning for Python Packages."""', + ... '"""PyCalVer: CalVer for Python Packages."""', ... '', ... '__version__ = "v201809.0123"', ... '',