torizon-templates-utils 0.0.5__tar.gz → 0.0.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (18) hide show
  1. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/PKG-INFO +1 -1
  2. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/pyproject.toml +1 -1
  3. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils/tasks.py +4 -2
  4. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils.egg-info/PKG-INFO +1 -1
  5. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/LICENSE +0 -0
  6. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/README.md +0 -0
  7. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/setup.cfg +0 -0
  8. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils/__init__.py +0 -0
  9. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils/animations.py +0 -0
  10. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils/args.py +0 -0
  11. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils/colors.py +0 -0
  12. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils/debug.py +0 -0
  13. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils/errors.py +0 -0
  14. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils/network.py +0 -0
  15. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils.egg-info/SOURCES.txt +0 -0
  16. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils.egg-info/dependency_links.txt +0 -0
  17. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils.egg-info/requires.txt +0 -0
  18. {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.6}/torizon_templates_utils.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: torizon_templates_utils
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: Package with utilities for Torizon Templates scripts
5
5
  Author-email: Matheus Castello <matheus.castello@toradex.com>
6
6
  Project-URL: Homepage, https://github.com/torizon/vscode-torizon-templates
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "torizon_templates_utils"
7
- version = "0.0.5"
7
+ version = "0.0.6"
8
8
  authors = [
9
9
  { name="Matheus Castello", email="matheus.castello@toradex.com" },
10
10
  ]
@@ -873,8 +873,10 @@ class TaskRunner:
873
873
  _args = self.__check_input(_args)
874
874
  _args = self.__check_vscode_env(_args)
875
875
  _args = self.__check_config(_args)
876
- _args = self.__check_long_args(_args)
877
- _args = self.__quoting_special_chars(_args)
876
+ # FIXME: These was in the powershell implementation
877
+ # but when used on Python it generates weird behavior
878
+ # _args = self.__check_long_args(_args)
879
+ # _args = self.__quoting_special_chars(_args)
878
880
 
879
881
  # if in gitlab ci env we need to replace the DOCKER_HOST
880
882
  if self.__gitlab_ci:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: torizon_templates_utils
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: Package with utilities for Torizon Templates scripts
5
5
  Author-email: Matheus Castello <matheus.castello@toradex.com>
6
6
  Project-URL: Homepage, https://github.com/torizon/vscode-torizon-templates