File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
MIT License
2
2
3
- Copyright 2020-2021 Tobias Raabe
3
+ Copyright 2020 Tobias Raabe
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy of this
6
6
software and associated documentation files (the "Software"), to deal in the Software
@@ -26,7 +26,7 @@ copied and potentially modified.
26
26
27
27
MIT License
28
28
29
- Copyright (c) 2004-2020 Holger Krekel and others
29
+ Copyright (c) 2004 Holger Krekel and others
30
30
31
31
Permission is hereby granted, free of charge, to any person obtaining a copy of this
32
32
software and associated documentation files (the "Software"), to deal in the Software
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ all releases are available on `PyPI <https://pypi.org/project/pytask>`_ and
26
26
path part.
27
27
- :gh: `180 ` fixes parsing relative paths from the configuration file.
28
28
- :gh: `181 ` adds correct formatting of running tasks.
29
+ - :gh: `182 ` introduces that only the starting year is displayed in the license following
30
+ https://hynek.me/til/copyright-years.
29
31
30
32
31
33
0.1.3 - 2021-11-30
Original file line number Diff line number Diff line change 5
5
# If extensions (or modules to document with autodoc) are in another directory, add
6
6
# these directories to sys.path here. If the directory is relative to the documentation
7
7
# root, use os.path.abspath to make it absolute, like shown here.
8
- import datetime as dt
9
8
from importlib .metadata import version
10
9
11
10
import sphinx
14
13
# -- Project information ---------------------------------------------------------------
15
14
16
15
project = "pytask"
17
- year = dt .datetime .now ().year
18
16
author = "Tobias Raabe"
19
- copyright = f"2020- { year } , { author } " # noqa: A001
17
+ copyright = f"2020, { author } " # noqa: A001
20
18
21
19
# The version, including alpha/beta/rc tags, but not commit hash and datestamps
22
20
release = version ("pytask" )
You can’t perform that action at this time.
0 commit comments