Skip to content

Commit 619d4b9

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 888799d commit 619d4b9

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ url = https://github.com/pytask-dev/pytask-environment
77
author = Tobias Raabe
88
author_email = [email protected]
99
license = MIT
10-
license_file = LICENSE
10+
license_files = LICENSE
1111
platforms = any
1212
classifiers =
1313
Development Status :: 4 - Beta
@@ -27,7 +27,7 @@ install_requires =
2727
click
2828
pony
2929
pytask>=0.2
30-
python_requires = >=3.7
30+
python_requires = >=3.8
3131
include_package_data = True
3232
package_dir = =src
3333
zip_safe = False

src/pytask_environment/config.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""This module contains everything related to the configuration."""
2+
23
from __future__ import annotations
34

45
from typing import Any

src/pytask_environment/database.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""This module contains everything related to the database."""
2+
23
from __future__ import annotations
34

45
from pony import orm

src/pytask_environment/logging.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""This module contains everything related to logging."""
2+
23
from __future__ import annotations
34

45
import sys

src/pytask_environment/plugin.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Entry-point for the plugin."""
2+
23
from __future__ import annotations
34

45
from pluggy import PluginManager

0 commit comments

Comments
 (0)