# HG changeset patch # User Magnus Schieder # Date 1530294421 -7200 # Node ID 463894654d7750016f86fee65f033527e6dbd3be # Parent e7334b946caa79c040b2c038f15e6ca0dd170e5f Prepares for release 3.0 rename getan-eval.py to getan-report. rename getan-report.py to getan-day-report installed getan-report as script. installed getan-day-report as script. set python_requires to >=3.4 diff -r e7334b946caa -r 463894654d77 CHANGES --- a/CHANGES Fri Jun 29 19:28:24 2018 +0200 +++ b/CHANGES Fri Jun 29 19:47:01 2018 +0200 @@ -1,9 +1,9 @@ -2.x 20xx-xx-xx UNRELEASED +3.0 2018-06-29 - * getaneval.py (before getan-eval.py) can now be run directly without - PYTHONPATH. - getaneval.py is now installed as a script. More information can be found in - ./doc/old_issues.txt -20170504 BER + * getan-report (before getan-eval.py) and getan-day-report (before + getan-report.py) can now be run directly without PYTHONPATH. + getan-report and getan-day-report is now installed as a script. More + information can be found in ./doc/old_issues.txt -20170504 BER Patch by Magnus Schieder * The logging can now be switched on and off. The default value is off. diff -r e7334b946caa -r 463894654d77 getan/__init__.py --- a/getan/__init__.py Fri Jun 29 19:28:24 2018 +0200 +++ b/getan/__init__.py Fri Jun 29 19:47:01 2018 +0200 @@ -6,5 +6,5 @@ # This is Free Software licensed under the terms of GPLv3 or later. # For details see LICENSE coming with the source of 'getan'. -__version_info__ = ("2", "3", "dev1") +__version_info__ = ("3", "0") __version__ = '.'.join(__version_info__) diff -r e7334b946caa -r 463894654d77 getan/controller.py --- a/getan/controller.py Fri Jun 29 19:28:24 2018 +0200 +++ b/getan/controller.py Fri Jun 29 19:47:01 2018 +0200 @@ -2,6 +2,9 @@ # # (c) 2010 by Ingo Weinzierl # (c) 2011 by Björn Ricks +# (c) 2017, 2018 Intevation GmbH +# Authors: +# * Magnus Schieder # # A python worklog-alike to log what you have 'getan' (done). # diff -r e7334b946caa -r 463894654d77 getan/main.py --- a/getan/main.py Fri Jun 29 19:28:24 2018 +0200 +++ b/getan/main.py Fri Jun 29 19:47:01 2018 +0200 @@ -3,6 +3,9 @@ # # (c) 2010 by Ingo Weinzierl # (c) 2011 by Björn Ricks +# (c) 2017, 2018 Intevation GmbH +# Authors: +# * Magnus Schieder # # A python worklog-alike to log what you have 'getan' (done). # diff -r e7334b946caa -r 463894654d77 getan/states.py --- a/getan/states.py Fri Jun 29 19:28:24 2018 +0200 +++ b/getan/states.py Fri Jun 29 19:47:01 2018 +0200 @@ -3,8 +3,10 @@ # # (c) 2010 by Ingo Weinzierl # (c) 2011, 2012, 2014 by Björn Ricks -# (c) 2017 Intevation GmbH -# Author: Bernhard.Reiter@intevation.de +# (c) 2017, 2018 Intevation GmbH +# Authors: +# * Bernhard Reiter +# * Magnus Schieder # # This is Free Software licensed under the terms of GPLv3 or later. # For details see LICENSE coming with the source of 'getan'. diff -r e7334b946caa -r 463894654d77 getan/view.py --- a/getan/view.py Fri Jun 29 19:28:24 2018 +0200 +++ b/getan/view.py Fri Jun 29 19:47:01 2018 +0200 @@ -2,6 +2,9 @@ # # (c) 2010 by Ingo Weinzierl # (c) 2012 by Björn Ricks +# (c) 2017, 2018 Intevation GmbH +# Authors: +# * Magnus Schieder # # This is Free Software licensed under the terms of GPLv3 or later. # For details see LICENSE coming with the source of 'getan'. diff -r e7334b946caa -r 463894654d77 setup.py --- a/setup.py Fri Jun 29 19:28:24 2018 +0200 +++ b/setup.py Fri Jun 29 19:47:01 2018 +0200 @@ -2,11 +2,12 @@ # -*- coding: utf-8 -*- # # (c) 2011, 2014 by Björn Ricks -# (c) 2017 by Intevation GmbH +# (c) 2017, 2018 by Intevation GmbH # # Author(s): # * Björn Ricks # * Bernhard Reiter +# * Magnus Schieder # # A python worklog-alike to log what you have 'getan' (done). # @@ -40,7 +41,7 @@ license="GPLv3+", long_description=read("README"), packages=find_packages(), - python_requires='>=3', + python_requires='>=3.4', package_data={ "": ["*.txt"], "getan": ["templates/*"], @@ -64,6 +65,6 @@ "License :: OSI Approved :: " "GNU General Public License v3 or later (GPLv3+)", "Operating System :: POSIX", - "Programming Language :: Python :: 3" + "Programming Language :: Python :: 3.4" ], )