semaphoreui-client 0.1.8__py3-none-any.whl → 0.1.9__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.
- semaphoreui_client/__about__.py +1 -1
- semaphoreui_client/client.py +1 -3
- {semaphoreui_client-0.1.8.dist-info → semaphoreui_client-0.1.9.dist-info}/METADATA +1 -1
- semaphoreui_client-0.1.9.dist-info/RECORD +6 -0
- semaphoreui_client-0.1.8.dist-info/RECORD +0 -6
- {semaphoreui_client-0.1.8.dist-info → semaphoreui_client-0.1.9.dist-info}/WHEEL +0 -0
semaphoreui_client/__about__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.1.
|
1
|
+
__version__ = "0.1.9"
|
semaphoreui_client/client.py
CHANGED
@@ -510,9 +510,7 @@ class SemaphoreUIClient:
|
|
510
510
|
def get_project_tasks(self, project_id: int) -> typing.List["Task"]:
|
511
511
|
response = self.http.get(f"{self.api_endpoint}/project/{project_id}/tasks")
|
512
512
|
assert response.status_code == 200
|
513
|
-
return [
|
514
|
-
Task(**task, project_id=project_id, client=self) for task in response.json()
|
515
|
-
]
|
513
|
+
return [Task(**task, client=self) for task in response.json()]
|
516
514
|
|
517
515
|
def stop_project_task(self, project_id: int, id: int) -> None:
|
518
516
|
response = self.http.post(
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: semaphoreui-client
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.9
|
4
4
|
Summary: An api client for interacting with Semaphore UI
|
5
5
|
Project-URL: Documentation, https://github.com/rockstar/semaphoreui-client#readme
|
6
6
|
Project-URL: Issues, https://github.com/rockstar/semaphoreui-client/issues
|
@@ -0,0 +1,6 @@
|
|
1
|
+
semaphoreui_client/__about__.py,sha256=XIaxbMbyiP-L3kguR1GhxirFblTXiHR1lMfDVITvHUI,22
|
2
|
+
semaphoreui_client/__init__.py,sha256=VpeJavEFhs5gyfih7CoRTR4K4IGXGY3UYUkgAWj_f2U,56
|
3
|
+
semaphoreui_client/client.py,sha256=HQ89kvCNVqwzxxi0sIwYaekbVSaRlK1yDu87IbKCixM,29890
|
4
|
+
semaphoreui_client-0.1.9.dist-info/METADATA,sha256=odl0WZvWO_uUxrU1ZIk6AFoRvGgIwimGDV6z8pagxEQ,1632
|
5
|
+
semaphoreui_client-0.1.9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
6
|
+
semaphoreui_client-0.1.9.dist-info/RECORD,,
|
@@ -1,6 +0,0 @@
|
|
1
|
-
semaphoreui_client/__about__.py,sha256=C69ADlbQREQlR15trneyA2sk8x0-oH4rDAX5fsv19_U,22
|
2
|
-
semaphoreui_client/__init__.py,sha256=VpeJavEFhs5gyfih7CoRTR4K4IGXGY3UYUkgAWj_f2U,56
|
3
|
-
semaphoreui_client/client.py,sha256=54sHBKog_oA0g02B2Vbj-P4NnXvi9wKhbaWgyaY3I8U,29935
|
4
|
-
semaphoreui_client-0.1.8.dist-info/METADATA,sha256=JcpU-tA4cn5sQ7a7ptLF6Vt14yAYTGfIGbeCRUsCU_k,1632
|
5
|
-
semaphoreui_client-0.1.8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
6
|
-
semaphoreui_client-0.1.8.dist-info/RECORD,,
|
File without changes
|