Skip to content

Commit

Permalink
Merge pull request #86 from aleivag/allpyi
Browse files Browse the repository at this point in the history
selecting all .pyi files
  • Loading branch information
aleivag authored May 28, 2023
2 parents 53662f0 + ad13a2d commit 619fb8a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion pystemd/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@

setup(
name="pystemd",
version="0.13.1",
version="0.13.2",
author="Alvaro Leiva Geisse",
author_email="[email protected]",
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=[
Expand Down

0 comments on commit 619fb8a

Please sign in to comment.