jolt 0.9.404__py3-none-any.whl → 0.9.414__py3-none-any.whl

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.
@@ -100,6 +100,7 @@ class Jolt(Task):
100
100
  def get_dependencies(packages=None):
101
101
  reqs = packages or ["jolt"]
102
102
  pkgs = {}
103
+ skip = set()
103
104
 
104
105
  while reqs:
105
106
  req = reqs.pop()
@@ -111,12 +112,18 @@ def get_dependencies(packages=None):
111
112
  except Exception:
112
113
  dist = None
113
114
  if dist is None:
114
- log.debug("[SelfDeploy] Dependency not found: {}", req)
115
- pkgs[req] = req
115
+ skip.add(req)
116
116
  continue
117
117
 
118
118
  for dep in dist.requires or []:
119
- if dep not in pkgs:
119
+ dep = dep.split(" ", 1)[0].strip()
120
+ dep = dep.split("[", 1)[0].strip()
121
+ dep = dep.split(";", 1)[0].strip()
122
+ dep = dep.split(">", 1)[0].strip()
123
+ dep = dep.split("=", 1)[0].strip()
124
+ dep = dep.split("<", 1)[0].strip()
125
+ dep = dep.split("!", 1)[0].strip()
126
+ if dep not in pkgs and dep not in skip:
120
127
  reqs.append(dep)
121
128
 
122
129
  pkgs[req] = f"{dist.name}=={dist.version}"
jolt/tasks.py CHANGED
@@ -10,6 +10,7 @@ import platform
10
10
  from threading import RLock
11
11
  import subprocess
12
12
  from os import environ
13
+ from os import sys as os_sys
13
14
  import sys
14
15
  import unittest as ut
15
16
  from urllib.parse import urlparse
@@ -3134,7 +3135,8 @@ class Script(Task):
3134
3135
  doc = self.__doc__.split("---", 1)
3135
3136
  script = doc[1] if len(doc) > 1 else doc[0]
3136
3137
  script = script.splitlines()
3137
- script = [line[4:] for line in script]
3138
+ if os_sys.version_info < (3, 13):
3139
+ script = [line[4:] for line in script]
3138
3140
  script = "\n".join(script)
3139
3141
  script = script.lstrip()
3140
3142
  if not script.startswith("#!"):
jolt/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.9.404"
1
+ __version__ = "0.9.414"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jolt
3
- Version: 0.9.404
3
+ Version: 0.9.414
4
4
  Summary: A task executor
5
5
  Home-page: https://github.com/srand/jolt
6
6
  Author: Robert Andersson
@@ -21,125 +21,67 @@ Classifier: Programming Language :: Java
21
21
  Classifier: Programming Language :: JavaScript
22
22
  Classifier: Programming Language :: Python :: 3
23
23
  Requires-Python: >=3.8
24
- Requires-Dist: Babel>=2.7; extra == "i18n"
25
- Requires-Dist: BeautifulSoup4; extra == "htmlsoup"
26
- Requires-Dist: Cython>=3.0.11; extra == "source"
27
24
  Requires-Dist: Jinja2==3.1.4
28
- Requires-Dist: MarkupSafe>=2.0
29
- Requires-Dist: PySocks!=1.5.7,>=1.5.6; extra == "socks"
30
- Requires-Dist: SecretStorage>=3.2; sys_platform == "linux"
31
- Requires-Dist: allure-python-commons; extra == "allure"
32
- Requires-Dist: backports.tarfile; python_version < "3.12"
25
+ Requires-Dist: Jinja2==3.1.4
26
+ Requires-Dist: MarkupSafe==2.1.5
27
+ Requires-Dist: PyJWT==2.9.0
28
+ Requires-Dist: PyYAML==6.0.2
29
+ Requires-Dist: Pygments==2.18.0
30
+ Requires-Dist: SecretStorage==3.3.3
31
+ Requires-Dist: allure-python-commons==2.13.5
32
+ Requires-Dist: attrs==24.2.0
33
+ Requires-Dist: backports.tarfile==1.2.0
34
+ Requires-Dist: bottle==0.12.25
33
35
  Requires-Dist: bz2file==0.98
34
- Requires-Dist: certifi>=2017.4.17
35
- Requires-Dist: cffi>=1.11; extra == "cffi"
36
- Requires-Dist: cffi>=1.11; platform_python_implementation == "PyPy"
37
- Requires-Dist: cffi>=1.16.0
38
- Requires-Dist: chardet<6,>=3.0.2; extra == "use-chardet-on-py3"
39
- Requires-Dist: charset-normalizer<4,>=2
40
- Requires-Dist: check-manifest; extra == "dev"
41
- Requires-Dist: click>=8.1
42
- Requires-Dist: codecov>=2.0.5; extra == "test"
43
- Requires-Dist: colorama; platform_system == "Windows"
36
+ Requires-Dist: certifi==2024.8.30
37
+ Requires-Dist: cffi==1.17.1
38
+ Requires-Dist: charset-normalizer==3.3.2
39
+ Requires-Dist: click==8.1.7
44
40
  Requires-Dist: colorama==0.4.6
45
- Requires-Dist: conan>=2.0; extra == "conan"
46
- Requires-Dist: coverage>=4.2; extra == "test"
47
- Requires-Dist: coverage; extra == "test"
48
- Requires-Dist: cssselect>=0.7; extra == "cssselect"
49
- Requires-Dist: enum34; python_version <= "3.4" and extra == "test"
41
+ Requires-Dist: conan==2.10.2
42
+ Requires-Dist: cryptography==43.0.1
43
+ Requires-Dist: distro==1.8.0
44
+ Requires-Dist: docutils==0.21.2
50
45
  Requires-Dist: fasteners==0.19
51
- Requires-Dist: flake8>=3.0.4; extra == "test"
52
- Requires-Dist: flufl.flake8; extra == "test"
53
- Requires-Dist: furo; extra == "doc"
54
- Requires-Dist: furo; extra == "docs"
55
- Requires-Dist: gdata; python_version == "2.7" and extra == "test"
56
- Requires-Dist: grpcio>=1.62.2
57
- Requires-Dist: html5lib; extra == "html5"
58
- Requires-Dist: idna<4,>=2.5
59
- Requires-Dist: importlib-metadata>=4.11.4; python_version < "3.12"
60
- Requires-Dist: importlib-resources; python_version < "3.9"
61
- Requires-Dist: importlib-resources>=1.3; python_version < "3.9" and extra == "test"
46
+ Requires-Dist: flake8==7.1.1
47
+ Requires-Dist: grpcio==1.66.1
48
+ Requires-Dist: idna==3.10
49
+ Requires-Dist: importlib_metadata==8.5.0
62
50
  Requires-Dist: importlib_metadata==8.5.0
63
- Requires-Dist: ipaddress; python_version < "3.0" and extra == "test"
64
- Requires-Dist: ipython; extra == "perf"
65
- Requires-Dist: ipywidgets>=6; extra == "notebook"
66
- Requires-Dist: jaraco.classes; extra == "test"
67
51
  Requires-Dist: jaraco.classes==3.4.0
68
52
  Requires-Dist: jaraco.context==6.0.1
69
53
  Requires-Dist: jaraco.functools==4.0.2
70
- Requires-Dist: jaraco.packaging>=9.3; extra == "doc"
71
- Requires-Dist: jaraco.packaging>=9.3; extra == "docs"
72
- Requires-Dist: jaraco.test>=5.4; extra == "test"
73
- Requires-Dist: jaraco.tidelift>=1.4; extra == "doc"
74
- Requires-Dist: jaraco.tidelift>=1.4; extra == "docs"
75
- Requires-Dist: jeepney>=0.4.2; sys_platform == "linux"
76
- Requires-Dist: keyring>=20; extra == "test"
54
+ Requires-Dist: jeepney==0.8.0
77
55
  Requires-Dist: keyring==25.4.1
78
56
  Requires-Dist: keyrings.alt==5.0.2
79
- Requires-Dist: lxml-html-clean; extra == "html-clean"
80
57
  Requires-Dist: lxml==5.3.0
81
- Requires-Dist: mock; python_version < "3.0" and extra == "test"
58
+ Requires-Dist: mccabe==0.7.0
59
+ Requires-Dist: more-itertools==10.5.0
82
60
  Requires-Dist: more-itertools==10.5.0
83
61
  Requires-Dist: multi_key_dict==2.0.3
62
+ Requires-Dist: nh3==0.2.19
84
63
  Requires-Dist: ninja==1.11.1.1
85
- Requires-Dist: packaging; extra == "test"
86
- Requires-Dist: portend; extra == "test"
64
+ Requires-Dist: packaging==24.2
65
+ Requires-Dist: patch-ng==1.18.1
66
+ Requires-Dist: pip==25.3
67
+ Requires-Dist: pluggy==1.5.0
68
+ Requires-Dist: pluginbase==1.0.1
87
69
  Requires-Dist: protobuf==5.28.2
88
70
  Requires-Dist: psutil==6.0.0
89
- Requires-Dist: pycryptodome; extra == "test"
90
- Requires-Dist: pycryptodomex; extra == "test"
91
- Requires-Dist: pyfakefs; extra == "test"
71
+ Requires-Dist: pycodestyle==2.12.1
72
+ Requires-Dist: pycparser==2.22
73
+ Requires-Dist: pyflakes==3.2.0
92
74
  Requires-Dist: pygit2==1.15.1
93
- Requires-Dist: pygobject-stubs; extra == "type"
94
- Requires-Dist: pytest!=8.1.*,>=6; extra == "test"
95
- Requires-Dist: pytest>=4.5.0; extra == "test"
96
- Requires-Dist: pytest>=6; extra == "dev"
97
- Requires-Dist: pytest>=6; extra == "testing"
98
- Requires-Dist: pytest-checkdocs>=2.4; extra == "check"
99
- Requires-Dist: pytest-checkdocs>=2.4; extra == "test"
100
- Requires-Dist: pytest-checkdocs>=2.4; extra == "testing"
101
- Requires-Dist: pytest-cov; extra == "cover"
102
- Requires-Dist: pytest-cov; extra == "dev"
103
- Requires-Dist: pytest-cov; extra == "test"
104
- Requires-Dist: pytest-cov; extra == "testing"
105
- Requires-Dist: pytest-cov>=2.7.1; extra == "test"
106
- Requires-Dist: pytest-enabler>=2.2; extra == "enabler"
107
- Requires-Dist: pytest-enabler>=2.2; extra == "test"
108
- Requires-Dist: pytest-enabler>=2.2; extra == "testing"
109
- Requires-Dist: pytest-mypy; extra == "test"
110
- Requires-Dist: pytest-mypy; extra == "testing"
111
- Requires-Dist: pytest-mypy; extra == "type"
112
- Requires-Dist: pytest-perf>=0.9.2; extra == "test"
113
- Requires-Dist: pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"
114
- Requires-Dist: pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "test"
115
- Requires-Dist: pytest-ruff>=0.2.1; extra == "testing"
116
- Requires-Dist: pytest-runner>=5.1; extra == "test"
117
- Requires-Dist: pytest-timeout; extra == "dev"
118
- Requires-Dist: pytest-virtualenv>=1.7.0; extra == "test"
119
- Requires-Dist: pytest-xdist; extra == "dev"
120
- Requires-Dist: python-keyczar; python_version == "2.7" and extra == "test"
121
- Requires-Dist: pywin32; sys_platform == "win32" and extra == "test"
122
- Requires-Dist: pywin32-ctypes>=0.2.0; sys_platform == "win32"
123
- Requires-Dist: requests; extra == "telegram"
75
+ Requires-Dist: python-dateutil==2.9.0.post0
76
+ Requires-Dist: readme_renderer==44.0
124
77
  Requires-Dist: requests==2.32.3
125
- Requires-Dist: rst.linker>=1.9; extra == "doc"
126
- Requires-Dist: rst.linker>=1.9; extra == "docs"
127
- Requires-Dist: shtab; extra == "type"
128
- Requires-Dist: shtab>=1.1.0; extra == "completion"
129
- Requires-Dist: slack-sdk; extra == "slack"
130
- Requires-Dist: sphinx>=3.5; extra == "doc"
131
- Requires-Dist: sphinx>=3.5; extra == "docs"
132
- Requires-Dist: sphinx-click; extra == "doc"
133
- Requires-Dist: sphinx-lint; extra == "doc"
134
- Requires-Dist: sphinx-lint; extra == "docs"
135
- Requires-Dist: sphinx-rtd-theme; extra == "doc"
78
+ Requires-Dist: setuptools==80.9.0
79
+ Requires-Dist: six==1.16.0
136
80
  Requires-Dist: tqdm==4.66.5
137
- Requires-Dist: types-pywin32; extra == "type"
138
- Requires-Dist: typing-extensions>=3.6.4; python_version < "3.8"
139
- Requires-Dist: urllib3<3,>=1.21.1
140
- Requires-Dist: virtualenv>=15.0.3; extra == "test"
141
- Requires-Dist: wmi; sys_platform == "win32" and extra == "test"
142
- Requires-Dist: zipp>=3.20
81
+ Requires-Dist: typing_extensions==4.12.2
82
+ Requires-Dist: urllib3==1.26.20
83
+ Requires-Dist: wheel==0.45.1
84
+ Requires-Dist: zipp==3.20.2
143
85
  Requires-Dist: zstandard==0.23.0
144
86
  Provides-Extra: allure
145
87
  Requires-Dist: allure-python-commons; extra == "allure"
@@ -19,11 +19,11 @@ jolt/log.py,sha256=cqEfX__AWSA4onueTTdoL4HnovEtzT4yoRoyKQk2MH8,14592
19
19
  jolt/manifest.py,sha256=V5fkvTE-cZt0IQbA8sBdC4WEaYrz7FEXQdSt6Uj-DWc,7256
20
20
  jolt/options.py,sha256=BrsyKsj3sY5qogMreHGgbimQuyGjnyilCa8QXPVm1Y0,947
21
21
  jolt/scheduler.py,sha256=2xehPvoJDLdv211UdP2cqqQs2M2L5Ozw2_GuE556Tjg,32513
22
- jolt/tasks.py,sha256=fD-huf0h0xN5x3MjClaZMRDPuhjwHeF3SBnqXXlHjtM,115888
22
+ jolt/tasks.py,sha256=45UcZYaXV2-KQZHTsA4_TCiY1G8Bvpf6M7K2_R6ELJo,115963
23
23
  jolt/timer.py,sha256=PE-7vmsqZpF73e_cKSsrhd36-A7fJ9_XGYI_oBWJn5w,644
24
24
  jolt/tools.py,sha256=A9mbyZkp4NH9Xkroz5KKhsvn8jIqnvnogVaI4VbgM20,80171
25
25
  jolt/utils.py,sha256=bbp5mMhQRdq7sHDAxaqVVgD4QGGWXcwMCyIgG8LvyoA,19133
26
- jolt/version.py,sha256=l32M_D066-fZJ9087fsj8fKEiXRWzLAQFXJk_XiSNlE,24
26
+ jolt/version.py,sha256=ULqTpfbLz-5Z_aP6GcjaiAJnQO__jRJkmSUyiuS_zKk,24
27
27
  jolt/version_utils.py,sha256=tNCGT6ZmSGFHW1aw2Hx1l19m-RR1UnTN6xJV1I54KRw,3900
28
28
  jolt/xmldom.py,sha256=SbygiDUMYczzWGxXa60ZguWS6Nztg8gDAirdbtjT15I,5982
29
29
  jolt/bin/fstree-darwin-x86_64,sha256=i4Ppbdr7CxsEhJzWpy3GMB5Gn5ikmskh41MyUwQS3-o,29549000
@@ -62,7 +62,7 @@ jolt/plugins/podman.py,sha256=7xrPWaJvSzsBSsEUaCwBfVtMfzx5pLUrZB7pxf8hLzs,22487
62
62
  jolt/plugins/python.py,sha256=kLx1Y3ezMH9AOW36DH_cNyDlvbIdTkyvPjwLYolnCEU,3073
63
63
  jolt/plugins/report.py,sha256=EiPuZSoxEM-fXDsHBQuRTf1xtvN_gPBodMej3E9CGx0,2695
64
64
  jolt/plugins/scheduler.py,sha256=SJdRb0taOF4zhKkPfc9zg8UyvDn7rJYtbyMPC93XXsk,24560
65
- jolt/plugins/selfdeploy.py,sha256=Dm-iTsdx6CtKIEul8s50A59i8OXc42UPrSmfyTSh-7M,6656
65
+ jolt/plugins/selfdeploy.py,sha256=oYeBefUfabf-ACEVbdyJi2n9SfAuXLK1Q12D35obZsw,6952
66
66
  jolt/plugins/strings.py,sha256=sHDroW0srlQI1aRwu_WANkmR35sUxPvZGO28CYo-ClY,1783
67
67
  jolt/plugins/symlinks.py,sha256=u4lTcpkepf0_mr_RI85uiSkI_WAUGebAOsbH5WlAnzo,2399
68
68
  jolt/plugins/telemetry.py,sha256=xHgJVbSVRaPy67kblL4wj86mDESlFS1z3NGDJ2uDXZ8,3572
@@ -85,8 +85,8 @@ jolt/templates/cxxexecutable.cmake.template,sha256=f0dg1VOFlamlF8fuHFTki5dsJ2ssS
85
85
  jolt/templates/cxxlibrary.cmake.template,sha256=GMEG2G3QoY3E5fsNer52zOqgM221-abeCkV__mVbZ94,1750
86
86
  jolt/templates/export.sh.template,sha256=PKkflGXFbq70EIsowqcnLvzbnEDnqh_WgC4E_JNT0VE,1937
87
87
  jolt/templates/timeline.html.template,sha256=xdqvFBmhE8XRQaWgcIFBVbd__9HdRq6O-U0o276PyjU,1222
88
- jolt-0.9.404.dist-info/METADATA,sha256=2Yyxc9HR0RGreDcmQnVCAbF7W7sepIu-dLRsYnIAgDA,10284
89
- jolt-0.9.404.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
90
- jolt-0.9.404.dist-info/entry_points.txt,sha256=VZ-QH38Z9HJc1O57wfzr-soHn6exwc3N0TSrRum4tYg,44
91
- jolt-0.9.404.dist-info/top_level.txt,sha256=HwzVmAwUrvCUUHRi3zUfcpdKTsdNrZmPCvsrsWSFyqE,5
92
- jolt-0.9.404.dist-info/RECORD,,
88
+ jolt-0.9.414.dist-info/METADATA,sha256=hf96S079kixNuNh4JBc26tYnga1mekWWuxJVDkAIneY,6691
89
+ jolt-0.9.414.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
90
+ jolt-0.9.414.dist-info/entry_points.txt,sha256=VZ-QH38Z9HJc1O57wfzr-soHn6exwc3N0TSrRum4tYg,44
91
+ jolt-0.9.414.dist-info/top_level.txt,sha256=HwzVmAwUrvCUUHRi3zUfcpdKTsdNrZmPCvsrsWSFyqE,5
92
+ jolt-0.9.414.dist-info/RECORD,,
File without changes