diff --git a/CHANGES.rst b/CHANGES.rst index 45bb074..bda38bf 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,9 +2,17 @@ ColorDetect Changelog ===================== +.. _1.6.2: +1.6.2 (15-08-2024) +================== +Fix +--------- + +- Update setup requirements for new packaging system + .. _1.6.1: -1.6.0 (14-08-2024) +1.6.1 (14-08-2024) ================== Fix --------- diff --git a/setup.py b/setup.py index 40c813e..5399abc 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ColorDetect", - version="1.6.1", + version="1.6.2", author="Marvin Kweyu", author_email="mkweyu1@gmail.com", description="Detect and recognize colors in images or video", @@ -16,11 +16,11 @@ include_package_data=True, license="MIT", install_requires=[ - "numpy>==1.18.1", - "matplotlib>==3.2.1", - "opencv-python>==4.2.0.32", - "scikit-learn>==0.22.2.post1", - "webcolors>==1.11.1", + "numpy>=1.18.1", + "matplotlib>=3.2.1", + "opencv-python>=4.2.0.32", + "scikit-learn>=0.22.2.post1", + "webcolors>=1.11.1", ], classifiers=[ "Programming Language :: Python :: 3",