Skip to content

Commit ad13a2d

Browse files
committed
selecting all .pyi files
1 parent 53662f0 commit ad13a2d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pystemd"
7-
version = "0.13.1"
7+
version = "0.13.2"
88
readme = "README.md"
99
description="A systemd binding for python"
1010
dependencies = [

pystemd/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
# during development this version is always at least "one up" the
1212
# latest release.
13-
__version__ = "0.13.1"
13+
__version__ = "0.13.2"
1414

1515
sys.modules[__name__] = __version__ # type: ignore

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@
6363

6464
setup(
6565
name="pystemd",
66-
version="0.13.1",
66+
version="0.13.2",
6767
author="Alvaro Leiva Geisse",
6868
author_email="aleivag@gmail.com",
6969
packages=["pystemd", "pystemd.systemd1", "pystemd.machine1", "pystemd.DBus"],
7070
ext_modules=external_modules,
7171
package_data={
7272
"pystemd": [
73-
str(Path(p).relative_to("pystemd")) for p in glob.glob("pystemd/**/*.pyi")
73+
str(p.relative_to("pystemd")) for p in Path("pystemd").glob("**/*.pyi")
7474
]
7575
},
7676
install_requires=[

0 commit comments

Comments
 (0)