From 75e544d68cc4f89a29832c3a199617d02d8f9de0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Lapr=C3=A9?= Date: Sat, 4 Feb 2023 16:04:24 +0100 Subject: [PATCH] Remove dependency versions in setup.cfg --- PIconnect/__init__.py | 2 +- setup.cfg | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/PIconnect/__init__.py b/PIconnect/__init__.py index dd9fa300..1c98f6cc 100644 --- a/PIconnect/__init__.py +++ b/PIconnect/__init__.py @@ -9,7 +9,7 @@ # pragma pylint: enable=unused-import -__version__ = "0.10.5" +__version__ = "0.10.6" __sdk_version = tuple(int(x) for x in AF.PISystems().Version.split(".")) __all__ = [ diff --git a/setup.cfg b/setup.cfg index 36e13617..f17bb0aa 100644 --- a/setup.cfg +++ b/setup.cfg @@ -35,10 +35,10 @@ packages = PIconnect PIconnect._typing install_requires = - pandas==1.5.2 - wrapt==1.14.1 - pytz==2022.7.1 - pythonnet==3.0.1 + pandas + wrapt + pytz + pythonnet python_requires = >= 3.8 include_package_data = True zip_safe=False