Skip to content

Commit 6f0c68a

Browse files
style: pre-commit fixes
1 parent e710506 commit 6f0c68a

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

setup.cfg

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ classifiers =
2222
Programming Language :: Python
2323
Programming Language :: Python :: 3
2424
Programming Language :: Python :: 3 :: Only
25-
Programming Language :: Python :: 3.7
26-
Programming Language :: Python :: 3.8
2725
Programming Language :: Python :: 3.9
2826
Programming Language :: Python :: 3.10
2927
Programming Language :: Python :: 3.11
@@ -37,7 +35,7 @@ classifiers =
3735
packages = find:
3836
install_requires =
3937
GitPython
40-
python_requires = >=3.7
38+
python_requires = >=3.9
4139
include_package_data = True
4240
package_dir =
4341
= src

src/g4edgetestdata/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
"""Bare-bones Python package to access G4Edge test data files."""
2+
23
from __future__ import annotations
34

45
from g4edgetestdata._version import version as __version__
56
from g4edgetestdata.core import G4EdgeTestData
67

7-
__all__ = ["__version__", "G4EdgeTestData"]
8+
__all__ = ["G4EdgeTestData", "__version__"]

0 commit comments

Comments
 (0)