Skip to content

Commit

Permalink
Merge pull request #142 from mwhudson/relax-install_requires
Browse files Browse the repository at this point in the history
do not pass strict versions to install_requires
  • Loading branch information
mwhudson authored Apr 15, 2024
2 parents f34ae3c + 31baac0 commit 4e5b10c
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ def pkgconfig(package):
'extra_link_args': subprocess.check_output(['pkg-config', '--libs', package]).decode('utf8').split(),
}


def read_requirement():
return [req.strip() for req in open('requirements.txt')]


setup(name='probert',
version=probert.__version__,
description="Hardware probing tool",
Expand All @@ -66,6 +61,6 @@ def read_requirement():
**pkgconfig("libnl-genl-3.0")),
],
packages=find_packages(),
install_requires=read_requirement(),
install_requires=['jsonschema', 'pyudev'],
include_package_data=True,
)

0 comments on commit 4e5b10c

Please sign in to comment.