Make signatures_only in pkgfiles.get_pkgfiles a required kwarg
This commit is contained in:
@@ -10,7 +10,7 @@ SIGEXT = f"{PKGEXT}.sig"
|
||||
|
||||
|
||||
# ========== Functions ==========
|
||||
def get_pkgfiles(query=None, directory=None, signatures_only=False):
|
||||
def get_pkgfiles(query=None, directory=None, *, signatures_only=False):
|
||||
"""Return a list of package files in the current working directory.
|
||||
|
||||
:param query: names of package files to search for
|
||||
|
2
setup.py
2
setup.py
@@ -5,7 +5,7 @@ with open("README.rst", "r") as fh:
|
||||
|
||||
setuptools.setup(
|
||||
name="packaging_scripts",
|
||||
version="1.1.3",
|
||||
version="1.1.5",
|
||||
author="Eric Russel Torres",
|
||||
author_email="erictorres4@protonmail.com",
|
||||
description="A set of helpers for automating borg interaction",
|
||||
|
Reference in New Issue
Block a user