Skip to content

Commit 2776aa9

Browse files
style: pre-commit fixes
1 parent 9319766 commit 2776aa9

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

setup.cfg

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +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
27-
Programming Language :: Python :: 3.9
2824
Programming Language :: Python :: 3.10
2925
Programming Language :: Python :: 3.11
3026
Topic :: Scientific/Engineering
@@ -37,7 +33,7 @@ classifiers =
3733
packages = find:
3834
install_requires =
3935
GitPython
40-
python_requires = >=3.7
36+
python_requires = >=3.10
4137
include_package_data = True
4238
package_dir =
4339
= 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)