Fix to setup to specify versions of required packages

This commit is contained in:
Rhet Turnbull
2020-01-14 05:28:49 -08:00
parent bd20388778
commit de05323a15
2 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
""" version info """
__version__ = "0.21.5"
__version__ = "0.21.6"

View File

@@ -61,6 +61,6 @@ setup(
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=["pyobjc", "Click", "pyyaml"],
install_requires=["pyobjc>=6.0.1", "Click>=7", "PyYAML>=5.1.2"],
entry_points={"console_scripts": ["osxphotos=osxphotos.__main__:cli"]},
)