Mercurial > getan
changeset 488:463894654d77 3.0
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
author | Magnus Schieder <mschieder@intevation.de> |
---|---|
date | Fri, 29 Jun 2018 19:47:01 +0200 |
parents | e7334b946caa |
children | fbb6f829c643 |
files | CHANGES getan/__init__.py getan/controller.py getan/main.py getan/states.py getan/view.py setup.py |
diffstat | 7 files changed, 23 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- 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.
--- 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__)
--- 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 <ingo.weinzierl@intevation.de> # (c) 2011 by Björn Ricks <bjoern.ricks@intevation.de> +# (c) 2017, 2018 Intevation GmbH +# Authors: +# * Magnus Schieder <magnus.schieder@intevation.de> # # A python worklog-alike to log what you have 'getan' (done). #
--- 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 <ingo.weinzierl@intevation.de> # (c) 2011 by Björn Ricks <bjoern.ricks@intevation.de> +# (c) 2017, 2018 Intevation GmbH +# Authors: +# * Magnus Schieder <magnus.schieder@intevation.de> # # A python worklog-alike to log what you have 'getan' (done). #
--- 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 <ingo.weinzierl@intevation.de> # (c) 2011, 2012, 2014 by Björn Ricks <bjoern.ricks@intevation.de> -# (c) 2017 Intevation GmbH -# Author: Bernhard.Reiter@intevation.de +# (c) 2017, 2018 Intevation GmbH +# Authors: +# * Bernhard Reiter <Bernhard.Reiter@intevation.de> +# * Magnus Schieder <magnus.schieder@intevation.de> # # This is Free Software licensed under the terms of GPLv3 or later. # For details see LICENSE coming with the source of 'getan'.
--- 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 <ingo.weinzierl@intevation.de> # (c) 2012 by Björn Ricks <bjoern.ricks@intevation.de> +# (c) 2017, 2018 Intevation GmbH +# Authors: +# * Magnus Schieder <magnus.schieder@intevation.de> # # This is Free Software licensed under the terms of GPLv3 or later. # For details see LICENSE coming with the source of 'getan'.
--- 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 <bjoern.ricks@intevation.de> -# (c) 2017 by Intevation GmbH +# (c) 2017, 2018 by Intevation GmbH # # Author(s): # * Björn Ricks <bjoern.ricks@intevation.de> # * Bernhard Reiter <bernhard.reiter@intevation.de> +# * Magnus Schieder <magnus.schieder@intevation.de> # # 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" ], )