Skip to content

Commit 4455e66

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent af9841c commit 4455e66

File tree

3 files changed

+18
-20
lines changed

3 files changed

+18
-20
lines changed

pyproject.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -17,30 +17,29 @@ authors = [
1717
{ name = "holger krekel" },
1818
]
1919
requires-python = ">=3.7"
20+
classifiers = [
21+
"Development Status :: 4 - Beta",
22+
"Intended Audience :: Developers",
23+
"License :: OSI Approved :: MIT License",
24+
"Operating System :: MacOS :: MacOS X",
25+
"Operating System :: Microsoft :: Windows",
26+
"Operating System :: POSIX",
27+
"Programming Language :: Python",
28+
"Programming Language :: Python :: 3 :: Only",
29+
"Programming Language :: Python :: 3.7",
30+
"Programming Language :: Python :: 3.8",
31+
"Programming Language :: Python :: 3.9",
32+
"Programming Language :: Python :: 3.10",
33+
"Programming Language :: Python :: 3.11",
34+
"Programming Language :: Python :: Implementation :: CPython",
35+
"Topic :: Software Development :: Libraries",
36+
]
2037
dynamic = [
2138
"version",
2239
]
23-
classifiers = [
24-
"Development Status :: 4 - Beta",
25-
"Intended Audience :: Developers",
26-
"License :: OSI Approved :: MIT License",
27-
"Operating System :: MacOS :: MacOS X",
28-
"Operating System :: Microsoft :: Windows",
29-
"Operating System :: POSIX",
30-
"Programming Language :: Python",
31-
"Programming Language :: Python :: Implementation :: CPython",
32-
"Programming Language :: Python :: 3",
33-
"Programming Language :: Python :: 3 :: Only",
34-
"Programming Language :: Python :: 3.7",
35-
"Programming Language :: Python :: 3.8",
36-
"Programming Language :: Python :: 3.9",
37-
"Programming Language :: Python :: 3.10",
38-
"Topic :: Software Development :: Libraries",
39-
]
4040
[project.urls]
4141
Homepage = "https://github.com/pytest-dev/apipkg"
4242

43-
4443
[tool.hatch.version]
4544
source = "vcs"
4645

@@ -63,5 +62,6 @@ python = ["3.7", "3.8", "3.9", "3.10", "3.11"]
6362
[tool.hatch.envs.test.scripts]
6463
run-coverage = "pytest --cov-config=pyproject.toml --cov=pkg --cov=tests {args}"
6564
run = "run-coverage --no-cov {args}"
65+
6666
[mypy]
6767
python_version = "3.7"

src/apipkg/_alias_module.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77

88
def AliasModule(modname: str, modpath: str, attrname: str | None = None) -> ModuleType:
9-
109
cached_obj: object | None = None
1110

1211
def getmod() -> object:

test_apipkg.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,6 @@ def test_importlib_find_spec_aliasmodule(find_spec):
869869

870870

871871
def test_importlib_find_spec_initpkg(find_spec, tmpdir, monkeypatch):
872-
873872
modname = "apipkg_test_example_initpkg_findspec"
874873

875874
pkgdir = tmpdir.mkdir("apipkg_test_example_initpkg_findspec")

0 commit comments

Comments
 (0)