From ad13a2d9d072b1c6f07dc50ec7fc05d8273c537d Mon Sep 17 00:00:00 2001 From: Alvaro Leiva Geisse Date: Sat, 27 May 2023 21:54:21 -0700 Subject: [PATCH] selecting all .pyi files --- pyproject.toml | 2 +- pystemd/__version__.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dd9ce26..8064efd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pystemd" -version = "0.13.1" +version = "0.13.2" readme = "README.md" description="A systemd binding for python" dependencies = [ diff --git a/pystemd/__version__.py b/pystemd/__version__.py index e734ae6..e832c28 100644 --- a/pystemd/__version__.py +++ b/pystemd/__version__.py @@ -10,6 +10,6 @@ # during development this version is always at least "one up" the # latest release. -__version__ = "0.13.1" +__version__ = "0.13.2" sys.modules[__name__] = __version__ # type: ignore diff --git a/setup.py b/setup.py index 61414a9..cb9ed35 100644 --- a/setup.py +++ b/setup.py @@ -63,14 +63,14 @@ setup( name="pystemd", - version="0.13.1", + version="0.13.2", author="Alvaro Leiva Geisse", author_email="aleivag@gmail.com", packages=["pystemd", "pystemd.systemd1", "pystemd.machine1", "pystemd.DBus"], ext_modules=external_modules, package_data={ "pystemd": [ - str(Path(p).relative_to("pystemd")) for p in glob.glob("pystemd/**/*.pyi") + str(p.relative_to("pystemd")) for p in Path("pystemd").glob("**/*.pyi") ] }, install_requires=[