Skip to content

Commit 4c4d111

Browse files
style: pre-commit fixes
1 parent 388786a commit 4c4d111

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

setup.cfg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,12 @@ classifiers =
1515
Intended Audience :: Developers
1616
Intended Audience :: Information Technology
1717
Intended Audience :: Science/Research
18-
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
1918
Operating System :: MacOS
2019
Operating System :: POSIX
2120
Operating System :: Unix
2221
Programming Language :: Python
2322
Programming Language :: Python :: 3
2423
Programming Language :: Python :: 3 :: Only
25-
Programming Language :: Python :: 3.7
26-
Programming Language :: Python :: 3.8
2724
Programming Language :: Python :: 3.9
2825
Programming Language :: Python :: 3.10
2926
Programming Language :: Python :: 3.11
@@ -37,7 +34,7 @@ classifiers =
3734
packages = find:
3835
install_requires =
3936
GitPython
40-
python_requires = >=3.7
37+
python_requires = >=3.9
4138
include_package_data = True
4239
package_dir =
4340
= 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)