domino-py-iisas 1.0.7__py3-none-any.whl → 1.0.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.
domino/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.7
1
+ 1.0.9
@@ -9,14 +9,14 @@ from domino.client.github_rest_client import GithubRestClient
9
9
  class Actions(object):
10
10
  github_client = GithubRestClient(token=os.environ.get("GITHUB_TOKEN"))
11
11
  repo_name = os.environ.get("GITHUB_REPOSITORY")
12
- new_tag = f"domino-py-{domino.__version__}"
12
+ new_tag = f"domino-py-iisas-{domino.__version__}"
13
13
 
14
14
  @classmethod
15
15
  def _validate_package_version(cls):
16
16
  """
17
17
  Check if the version number is in the correct format.
18
18
  """
19
- pattern = r"^domino-py-\d+\.\d+\.\d+$"
19
+ pattern = r"^domino-py-iisas-\d+\.\d+\.\d+$"
20
20
  matched = re.match(pattern, cls.new_tag)
21
21
  if matched:
22
22
  return cls.new_tag
@@ -30,7 +30,7 @@ class Actions(object):
30
30
  releases = cls.github_client.get_releases(repo_name=cls.repo_name)
31
31
  if not releases:
32
32
  return
33
- releases_py = [release for release in releases if "domino-py-" in release.tag_name]
33
+ releases_py = [release for release in releases if "domino-py-iisas-" in release.tag_name]
34
34
  for release in releases_py:
35
35
  if release.tag_name == cls.new_tag:
36
36
  raise Exception("Version already exists.")
@@ -595,7 +595,7 @@ def create_platform(install_airflow: bool = True, use_gpu: bool = False) -> None
595
595
  commands = [
596
596
  "helm", "install",
597
597
  "-f", str(fp.name),
598
- "domino-iisas",
598
+ "domino",
599
599
  f"{tmp_dir}/domino",
600
600
  ]
601
601
  subprocess.run(commands)
@@ -135,7 +135,7 @@ class DominoKubernetesPodOperator(KubernetesPodOperator):
135
135
  all_volumes.append(volume_dev_pieces)
136
136
  all_volume_mounts.append(volume_mount_dev_pieces)
137
137
 
138
- ######################## For local domino-py dev ###############################################
138
+ ######################## For local domino-py-iisas dev ###############################################
139
139
  domino_package_local_claim_name = 'domino-dev-volume-claim'
140
140
  pvc_exists = False
141
141
  try:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: domino-py-iisas
3
- Version: 1.0.7
3
+ Version: 1.0.9
4
4
  Summary: Fork of the original Python package for Domino.
5
5
  Author-email: Stefan Dlugolinsky <stefan.dlugolinsky@savba.sk>, Luiz Tauffer <luiz@taufferconsulting.com>, Vinicius Vaz <vinicius@taufferconsulting.com>
6
6
  License:
@@ -1,9 +1,9 @@
1
- domino/VERSION,sha256=bWuSMN2LiqxSf4kpt8L8H6A2XezMqFYhbel51vXGpv4,6
1
+ domino/VERSION,sha256=LfK9cBHoc1Hi4-KW3bfyUgJwp2Fg-VstZLM3FnKU8ow,6
2
2
  domino/__init__.py,sha256=I3dmIBqKnlYjo-VFCDdA_7YUqsNT-i9QtQqXnV9pW4U,233
3
3
  domino/base_piece.py,sha256=LZE08XqU63Zq_W7G9DuFk8ZEjKNhgSE7pumXBctW9BE,17610
4
4
  domino/logger.py,sha256=08Km3_NmgYH3HrxJjZJWGSmOv7dE5E5xvo9_ZnKut_o,889
5
5
  domino/task.py,sha256=VNGo969ZOvevuDCexp8U3IN4lN1iX3vf5hs7rvnKd2o,6774
6
- domino/actions/github_actions.py,sha256=XvfeDgCiTVOc1twLN1ahdqBhPC9oYtpTtkmPGjN77x4,2273
6
+ domino/actions/github_actions.py,sha256=sDXJYh4D93MiaWJq6BquARAInq5Zt887lXrPwceLwHE,2291
7
7
  domino/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  domino/cli/cli.py,sha256=lP-ApzSVT1rSF2BvxG3PD7zvOgAvrMsPyvpafgLs7_Y,15045
9
9
  domino/cli/tests/test_create_piece.py,sha256=DQuJDG8kVEtDHxQjh4uttbkp21vtsmsBPvZhAV8vvjs,3305
@@ -12,7 +12,7 @@ domino/cli/utils/config-domino-local.toml,sha256=9Mu2GBHeYNLxt9o3be_7Hzl-li2USNC
12
12
  domino/cli/utils/constants.py,sha256=8CbuNpXqCFCFjtcRt1X3_2i0udPerdUbIs4Z35AFRhc,252
13
13
  domino/cli/utils/docker-compose.yaml,sha256=r2M5-Unp5MXvkCYLVy9Z4qXVN1onYlncTqlHHJaKJQc,12667
14
14
  domino/cli/utils/pieces_repository.py,sha256=5lkUZtY3PH5pSwenNDi2kGfxWLL4v2uWLNYI62Sd16Q,22760
15
- domino/cli/utils/platform.py,sha256=oV1a60A7KW8fZRFii-Osvt8WVxayaQXBA_2rb-D9dvc,48697
15
+ domino/cli/utils/platform.py,sha256=zmXtLT1L75BKl-wlCHCqRXa4_qDs90wrrKyl25MoPAg,48691
16
16
  domino/cli/utils/templates.py,sha256=b7YhxqblrWeFhxmYiFh_iqRcJxIUZgPiaWhOHeb0shY,1982
17
17
  domino/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  domino/client/domino_backend_client.py,sha256=GuE4nZYt7Ke8vrnSa7o2VRAUYvy19RdyYwJD6WpoAik,2861
@@ -22,7 +22,7 @@ domino/client/legacy/fs_client.py,sha256=x5Mpc3hECJSXCNMSPTJMJ47k730MYouU6GAZIsV
22
22
  domino/client/legacy/s3_client.py,sha256=N9aueHdpIsIGNvhv6ONSdGGRB4Jlnb5SC7AaxVLlfDs,2739
23
23
  domino/custom_operators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
24
  domino/custom_operators/docker_operator.py,sha256=CaKG6Zk3ReLzWAA8CNkcZa-rx4uRGCqflXzvkkPr8WU,8925
25
- domino/custom_operators/k8s_operator.py,sha256=zR6tozPoaRtWbpGNaiBl2mlpIu1UL5fmIoWET7m_6ow,26226
25
+ domino/custom_operators/k8s_operator.py,sha256=nZcUJdNOfZa5cFcbZ7ivW4tRirf8GPiF2ZjRPMLsa88,26232
26
26
  domino/custom_operators/python_operator.py,sha256=Dc5ltIliFBk6kPcaEROvuMZ0Cb3oG8tVK7WGa0yx7m8,3484
27
27
  domino/custom_operators/worker_operator.py,sha256=aEd45nqdsUbmIzlJinBwOcTxF8MgjtaRgRXaANmKdbU,1335
28
28
  domino/custom_operators/deprecated/base_operator.py,sha256=1IrwZcESeZFyqDTnu0DkgdCdlG03Do9SaSy4AmingfY,2001
@@ -63,9 +63,9 @@ domino/utils/__init__.py,sha256=7CET-zz6y1EBuBJQLgF3rXNhKOSj32Z3X_3mKUAirII,231
63
63
  domino/utils/metadata_default.py,sha256=4tbmWoVuoRMxd2c2vkwKYLkTTDf1I0OooXB_P5DGWXM,455
64
64
  domino/utils/piece_generator.py,sha256=Yww5PwH-EDLqNrnWAinCgpG5-uQSVi_3UbMw4HZCE-E,514
65
65
  domino/utils/workflow_shared_storage.py,sha256=USt_Q6nRGrtbcgrWHjtEvBDMSGSDd3BwUrZVe0RItH0,272
66
- domino_py_iisas-1.0.7.dist-info/licenses/LICENSE,sha256=ZOzivsSTOmVUr23IVL-IMv2nDRhWBp4hVxwYTNe4fBc,11353
67
- domino_py_iisas-1.0.7.dist-info/METADATA,sha256=VqYHIyFJkilcGYSiX13hhUtsR2gMwDZfSOCzfmj8S_E,17095
68
- domino_py_iisas-1.0.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
69
- domino_py_iisas-1.0.7.dist-info/entry_points.txt,sha256=EBX10akoWncqaYPjad7nTNFpge2bbooLSZJGPT-Ivzk,46
70
- domino_py_iisas-1.0.7.dist-info/top_level.txt,sha256=Mo0jr96Ke1GnB5Qa_U9nSu_7yRSWsu5dvPJk8RFiwRw,7
71
- domino_py_iisas-1.0.7.dist-info/RECORD,,
66
+ domino_py_iisas-1.0.9.dist-info/licenses/LICENSE,sha256=ZOzivsSTOmVUr23IVL-IMv2nDRhWBp4hVxwYTNe4fBc,11353
67
+ domino_py_iisas-1.0.9.dist-info/METADATA,sha256=gDWgcCR5ZyevlwBJmf03A8lhTnsmZ2qiqfQlR_pRUwk,17095
68
+ domino_py_iisas-1.0.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
69
+ domino_py_iisas-1.0.9.dist-info/entry_points.txt,sha256=EBX10akoWncqaYPjad7nTNFpge2bbooLSZJGPT-Ivzk,46
70
+ domino_py_iisas-1.0.9.dist-info/top_level.txt,sha256=Mo0jr96Ke1GnB5Qa_U9nSu_7yRSWsu5dvPJk8RFiwRw,7
71
+ domino_py_iisas-1.0.9.dist-info/RECORD,,