martinzink commented on code in PR #2043:
URL: https://github.com/apache/nifi-minifi-cpp/pull/2043#discussion_r2405558970
##########
extensions/python/pythonprocessors/nifi_python_processors/utils/dependency_installer.py:
##########
@@ -41,14 +41,21 @@ def extract_dependencies(file_path):
return visitor.dependencies
+def has_progress_bar() -> bool:
+ return sys.version_info[0] == 3 and sys.version_info[1] >= 9
Review Comment:
I doubt python 4.0 is ever coming but sure 😄
##########
extensions/python/pythonprocessors/nifi_python_processors/utils/dependency_installer.py:
##########
@@ -41,14 +41,21 @@ def extract_dependencies(file_path):
return visitor.dependencies
+def has_progress_bar() -> bool:
+ return sys.version_info[0] == 3 and sys.version_info[1] >= 9
Review Comment:
I doubt python 4.0 is ever coming out but sure 😄
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]