DIRAC 9.0.13__py3-none-any.whl → 9.0.14__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.
- DIRAC/WorkloadManagementSystem/Agent/JobCleaningAgent.py +1 -1
- DIRAC/WorkloadManagementSystem/Agent/PilotSyncAgent.py +4 -3
- DIRAC/WorkloadManagementSystem/Agent/StalledJobAgent.py +1 -1
- DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_JobAgent.py +4 -3
- DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_PilotLoggingAgent.py +3 -3
- DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_PilotStatusAgent.py +4 -2
- DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_PushJobAgent.py +5 -4
- DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_StalledJobAgent.py +4 -2
- DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py +2 -3
- DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapperOfflineTemplate.py +1 -1
- DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapperTemplate.py +1 -2
- {dirac-9.0.13.dist-info → dirac-9.0.14.dist-info}/METADATA +2 -2
- {dirac-9.0.13.dist-info → dirac-9.0.14.dist-info}/RECORD +17 -17
- {dirac-9.0.13.dist-info → dirac-9.0.14.dist-info}/WHEEL +0 -0
- {dirac-9.0.13.dist-info → dirac-9.0.14.dist-info}/entry_points.txt +0 -0
- {dirac-9.0.13.dist-info → dirac-9.0.14.dist-info}/licenses/LICENSE +0 -0
- {dirac-9.0.13.dist-info → dirac-9.0.14.dist-info}/top_level.txt +0 -0
|
@@ -38,8 +38,8 @@ from DIRAC.WorkloadManagementSystem.Client import JobStatus
|
|
|
38
38
|
from DIRAC.WorkloadManagementSystem.Client.WMSClient import WMSClient
|
|
39
39
|
from DIRAC.WorkloadManagementSystem.DB.JobDB import JobDB
|
|
40
40
|
from DIRAC.WorkloadManagementSystem.DB.SandboxMetadataDB import SandboxMetadataDB
|
|
41
|
-
from DIRAC.WorkloadManagementSystem.Service.JobPolicy import RIGHT_DELETE
|
|
42
41
|
from DIRAC.WorkloadManagementSystem.DB.StatusUtils import kill_delete_jobs
|
|
42
|
+
from DIRAC.WorkloadManagementSystem.Service.JobPolicy import RIGHT_DELETE
|
|
43
43
|
from DIRAC.WorkloadManagementSystem.Utilities.JobParameters import getJobParameters
|
|
44
44
|
|
|
45
45
|
|
|
@@ -8,15 +8,16 @@
|
|
|
8
8
|
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
|
-
import
|
|
11
|
+
import hashlib
|
|
12
12
|
import json
|
|
13
|
+
import os
|
|
13
14
|
import shutil
|
|
14
|
-
|
|
15
|
+
|
|
15
16
|
import requests
|
|
16
17
|
|
|
17
18
|
from DIRAC import S_OK
|
|
18
19
|
from DIRAC.Core.Base.AgentModule import AgentModule
|
|
19
|
-
from DIRAC.Core.Security.Locations import
|
|
20
|
+
from DIRAC.Core.Security.Locations import getCAsLocation, getHostCertificateAndKeyLocation
|
|
20
21
|
from DIRAC.DataManagementSystem.Client.DataManager import DataManager
|
|
21
22
|
from DIRAC.WorkloadManagementSystem.Utilities.PilotCStoJSONSynchronizer import PilotCStoJSONSynchronizer
|
|
22
23
|
|
|
@@ -20,8 +20,8 @@ from DIRAC.Core.Utilities.ClassAd.ClassAdLight import ClassAd
|
|
|
20
20
|
from DIRAC.Core.Utilities.ObjectLoader import ObjectLoader
|
|
21
21
|
from DIRAC.Core.Utilities.TimeUtilities import fromString, second, toEpoch
|
|
22
22
|
from DIRAC.WorkloadManagementSystem.Client import JobMinorStatus, JobStatus
|
|
23
|
-
from DIRAC.WorkloadManagementSystem.Service.JobPolicy import RIGHT_KILL
|
|
24
23
|
from DIRAC.WorkloadManagementSystem.DB.StatusUtils import kill_delete_jobs
|
|
24
|
+
from DIRAC.WorkloadManagementSystem.Service.JobPolicy import RIGHT_KILL
|
|
25
25
|
from DIRAC.WorkloadManagementSystem.Utilities.JobParameters import getJobParameters
|
|
26
26
|
from DIRAC.WorkloadManagementSystem.Utilities.Utils import rescheduleJobs
|
|
27
27
|
|
|
@@ -2,14 +2,15 @@
|
|
|
2
2
|
"""
|
|
3
3
|
import multiprocessing
|
|
4
4
|
import os
|
|
5
|
-
from pathlib import Path
|
|
6
|
-
import pytest
|
|
7
5
|
import time
|
|
8
6
|
from concurrent.futures import ProcessPoolExecutor
|
|
9
7
|
from functools import partial
|
|
8
|
+
from pathlib import Path
|
|
10
9
|
|
|
11
|
-
|
|
10
|
+
import pytest
|
|
12
11
|
from DIRAC.Core.Security.X509Chain import X509Chain # pylint: disable=import-error
|
|
12
|
+
|
|
13
|
+
from DIRAC import S_ERROR, S_OK, gLogger
|
|
13
14
|
from DIRAC.Resources.Computing.BatchSystems.TimeLeft.TimeLeft import TimeLeft
|
|
14
15
|
from DIRAC.Resources.Computing.ComputingElementFactory import ComputingElementFactory
|
|
15
16
|
from DIRAC.Resources.Computing.test.Test_PoolComputingElement import badJobScript, jobScript
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
""" Test class for PilotLoggingAgent Agent
|
|
2
2
|
"""
|
|
3
3
|
import os
|
|
4
|
-
import time
|
|
5
4
|
import tempfile
|
|
5
|
+
import time
|
|
6
|
+
from unittest.mock import MagicMock, patch
|
|
6
7
|
|
|
7
8
|
import pytest
|
|
8
|
-
from unittest.mock import MagicMock, patch
|
|
9
9
|
|
|
10
10
|
# DIRAC Components
|
|
11
11
|
import DIRAC.WorkloadManagementSystem.Agent.PilotLoggingAgent as plaModule
|
|
12
|
+
from DIRAC import S_ERROR, S_OK, gConfig, gLogger
|
|
12
13
|
from DIRAC.WorkloadManagementSystem.Agent.PilotLoggingAgent import PilotLoggingAgent
|
|
13
|
-
from DIRAC import gLogger, gConfig, S_OK, S_ERROR
|
|
14
14
|
|
|
15
15
|
gLogger.setLevel("DEBUG")
|
|
16
16
|
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
""" Test class for Pilot Status Agent
|
|
2
2
|
"""
|
|
3
|
-
import pytest
|
|
4
3
|
from unittest.mock import MagicMock
|
|
5
4
|
|
|
5
|
+
import pytest
|
|
6
|
+
|
|
7
|
+
from DIRAC import S_OK, gLogger
|
|
8
|
+
|
|
6
9
|
# DIRAC Components
|
|
7
10
|
from DIRAC.WorkloadManagementSystem.Agent.PilotStatusAgent import PilotStatusAgent
|
|
8
|
-
from DIRAC import gLogger, S_OK
|
|
9
11
|
|
|
10
12
|
# Mock objects
|
|
11
13
|
mockReply = MagicMock()
|
|
@@ -3,18 +3,19 @@
|
|
|
3
3
|
|
|
4
4
|
# imports
|
|
5
5
|
import os
|
|
6
|
-
from pathlib import Path
|
|
7
6
|
import shutil
|
|
7
|
+
from collections import defaultdict
|
|
8
|
+
from pathlib import Path
|
|
8
9
|
from unittest.mock import Mock
|
|
10
|
+
|
|
9
11
|
import pytest
|
|
10
|
-
|
|
12
|
+
|
|
13
|
+
from DIRAC import S_ERROR, S_OK, gLogger
|
|
11
14
|
|
|
12
15
|
# DIRAC Components
|
|
13
16
|
from DIRAC.ConfigurationSystem.Client.Helpers.Operations import Operations
|
|
14
17
|
from DIRAC.WorkloadManagementSystem.Agent.PushJobAgent import PushJobAgent
|
|
15
18
|
from DIRAC.WorkloadManagementSystem.Agent.test.Test_Agent_SiteDirector import config
|
|
16
|
-
|
|
17
|
-
from DIRAC import gLogger, S_OK, S_ERROR
|
|
18
19
|
from DIRAC.WorkloadManagementSystem.Client import JobMinorStatus
|
|
19
20
|
from DIRAC.WorkloadManagementSystem.Client.JobReport import JobReport
|
|
20
21
|
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
""" Test class for Stalled Job Agent
|
|
2
2
|
"""
|
|
3
|
-
import pytest
|
|
4
3
|
from unittest.mock import MagicMock
|
|
5
4
|
|
|
5
|
+
import pytest
|
|
6
|
+
|
|
7
|
+
from DIRAC import gLogger
|
|
8
|
+
|
|
6
9
|
# DIRAC Components
|
|
7
10
|
from DIRAC.WorkloadManagementSystem.Agent.StalledJobAgent import StalledJobAgent
|
|
8
|
-
from DIRAC import gLogger
|
|
9
11
|
|
|
10
12
|
# Mock Objects
|
|
11
13
|
mockAM = MagicMock()
|
|
@@ -16,7 +16,6 @@ import datetime
|
|
|
16
16
|
import glob
|
|
17
17
|
import json
|
|
18
18
|
import os
|
|
19
|
-
from pathlib import Path
|
|
20
19
|
import re
|
|
21
20
|
import shutil
|
|
22
21
|
import stat
|
|
@@ -24,12 +23,12 @@ import sys
|
|
|
24
23
|
import tarfile
|
|
25
24
|
import threading
|
|
26
25
|
import time
|
|
26
|
+
from pathlib import Path
|
|
27
27
|
from urllib.parse import unquote
|
|
28
28
|
|
|
29
29
|
import DIRAC
|
|
30
30
|
from DIRAC import S_ERROR, S_OK, gConfig, gLogger
|
|
31
31
|
from DIRAC.AccountingSystem.Client.Types.Job import Job as AccountingJob
|
|
32
|
-
|
|
33
32
|
from DIRAC.ConfigurationSystem.Client.Helpers.Operations import Operations
|
|
34
33
|
from DIRAC.ConfigurationSystem.Client.Helpers.Registry import getVOForGroup
|
|
35
34
|
from DIRAC.Core.Utilities import DEncode, DErrno, List
|
|
@@ -1021,7 +1020,7 @@ class JobWrapper:
|
|
|
1021
1020
|
|
|
1022
1021
|
for i in outputSandbox:
|
|
1023
1022
|
if i not in okFiles:
|
|
1024
|
-
if
|
|
1023
|
+
if f"{i}.tar" not in okFiles:
|
|
1025
1024
|
if not re.search(r"\*", i):
|
|
1026
1025
|
if i not in missing:
|
|
1027
1026
|
missing.append(i)
|
|
@@ -6,9 +6,9 @@ It is executed in environment where external connections are not allowed.
|
|
|
6
6
|
We assume this script is executed in a specific environment where DIRAC is available.
|
|
7
7
|
"""
|
|
8
8
|
import hashlib
|
|
9
|
-
import sys
|
|
10
9
|
import json
|
|
11
10
|
import os
|
|
11
|
+
import sys
|
|
12
12
|
|
|
13
13
|
sitePython = os.path.realpath("@SITEPYTHON@")
|
|
14
14
|
if sitePython:
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
- the resolution of the inpt data failed
|
|
12
12
|
- the JobWrapper ended with the status DErrno.EWMSRESC
|
|
13
13
|
"""
|
|
14
|
-
import sys
|
|
15
14
|
import json
|
|
16
15
|
import os
|
|
16
|
+
import sys
|
|
17
17
|
|
|
18
18
|
sitePython = os.path.realpath("@SITEPYTHON@")
|
|
19
19
|
if sitePython:
|
|
@@ -35,7 +35,6 @@ from DIRAC.WorkloadManagementSystem.JobWrapper.JobWrapperUtilities import (
|
|
|
35
35
|
transferInputSandbox,
|
|
36
36
|
)
|
|
37
37
|
|
|
38
|
-
|
|
39
38
|
os.umask(0o22)
|
|
40
39
|
|
|
41
40
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: DIRAC
|
|
3
|
-
Version: 9.0.
|
|
3
|
+
Version: 9.0.14
|
|
4
4
|
Summary: DIRAC is an interware, meaning a software framework for distributed computing.
|
|
5
5
|
Home-page: https://github.com/DIRACGrid/DIRAC/
|
|
6
6
|
License: GPL-3.0-only
|
|
@@ -19,7 +19,7 @@ Requires-Dist: cachetools
|
|
|
19
19
|
Requires-Dist: certifi
|
|
20
20
|
Requires-Dist: cwltool
|
|
21
21
|
Requires-Dist: diraccfg
|
|
22
|
-
Requires-Dist: DIRACCommon==v9.0.
|
|
22
|
+
Requires-Dist: DIRACCommon==v9.0.14
|
|
23
23
|
Requires-Dist: diracx-client>=v0.0.1
|
|
24
24
|
Requires-Dist: diracx-core>=v0.0.1
|
|
25
25
|
Requires-Dist: diracx-cli>=v0.0.1
|
|
@@ -1122,23 +1122,23 @@ DIRAC/Workflow/Utilities/test/Test_Utilities.py,sha256=DNjFPpBmpojwCWhZSUSoG3AIh
|
|
|
1122
1122
|
DIRAC/WorkloadManagementSystem/ConfigTemplate.cfg,sha256=uHa3ZiSC7cyhbJUNvWwqiL0E-m9UmBinrLIQdWmre3k,9030
|
|
1123
1123
|
DIRAC/WorkloadManagementSystem/__init__.py,sha256=9-_-HOT_8S3i-TMmTR_gFVVlNyktBRk-S2qSuOBKoIc,50
|
|
1124
1124
|
DIRAC/WorkloadManagementSystem/Agent/JobAgent.py,sha256=LzLypd3m4a6M-J5_nmUMsMqgflb_1Xm77eONDE6G1Vg,40843
|
|
1125
|
-
DIRAC/WorkloadManagementSystem/Agent/JobCleaningAgent.py,sha256=
|
|
1125
|
+
DIRAC/WorkloadManagementSystem/Agent/JobCleaningAgent.py,sha256=qoe6XQIy9HBC1rlaEG223DEx7upap5ju3eqTWtDiU3s,14708
|
|
1126
1126
|
DIRAC/WorkloadManagementSystem/Agent/PilotLoggingAgent.py,sha256=ZIgvFpasGTh76GW3G7O4hKC_Kkm31uWymlH-MTT3AXg,10541
|
|
1127
1127
|
DIRAC/WorkloadManagementSystem/Agent/PilotStatusAgent.py,sha256=qY6TbYCPOFFXhHffmRJLNEbWvZPyg5Lc5B_8BbyQ7zc,9711
|
|
1128
|
-
DIRAC/WorkloadManagementSystem/Agent/PilotSyncAgent.py,sha256=
|
|
1128
|
+
DIRAC/WorkloadManagementSystem/Agent/PilotSyncAgent.py,sha256=sns-1kUnF5kdvRhdfs_TbhXGAK_kqiosPL4_mD_tC2o,4861
|
|
1129
1129
|
DIRAC/WorkloadManagementSystem/Agent/PushJobAgent.py,sha256=IvHshnw2xN0AZrruEu86C47GDez8enBD6jjNIZd6QcA,38594
|
|
1130
1130
|
DIRAC/WorkloadManagementSystem/Agent/SiteDirector.py,sha256=ZSGWVKO64ztnv_R19I6TT7660jf7LMuYcff_aPq2xCM,45162
|
|
1131
|
-
DIRAC/WorkloadManagementSystem/Agent/StalledJobAgent.py,sha256=
|
|
1131
|
+
DIRAC/WorkloadManagementSystem/Agent/StalledJobAgent.py,sha256=mX9wxeEzBRfS63Jc0oEABCLrstPzSsbHc7SCIZTFNnA,25758
|
|
1132
1132
|
DIRAC/WorkloadManagementSystem/Agent/StatesAccountingAgent.py,sha256=iNIlWQEDBk6R1S8oHOIusZUwxOwLtgwuzR_4s32-o5w,8707
|
|
1133
1133
|
DIRAC/WorkloadManagementSystem/Agent/TaskQueuesAgent.py,sha256=ypsmo233TFXq9IC5uz6pum7_joOh2gFPUYNmmCpukAY,943
|
|
1134
1134
|
DIRAC/WorkloadManagementSystem/Agent/__init__.py,sha256=Pp2qIXA0zZxJXBQwPEDUt23Y_ct5cjs77w8ZEV6Ll6M,56
|
|
1135
|
-
DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_JobAgent.py,sha256=
|
|
1135
|
+
DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_JobAgent.py,sha256=7E2QCAfX854p8ielS6VUK0BG9E0mb2nBGzSeG0pJtO8,30723
|
|
1136
1136
|
DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_JobCleaningAgent.py,sha256=VwD3lGCEYeQuT-5wo02Yk11lR0dXmg0ObNCEvBZ-QSA,5415
|
|
1137
|
-
DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_PilotLoggingAgent.py,sha256=
|
|
1138
|
-
DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_PilotStatusAgent.py,sha256=
|
|
1139
|
-
DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_PushJobAgent.py,sha256=
|
|
1137
|
+
DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_PilotLoggingAgent.py,sha256=7rSt2IwgRBYX1-Svjx84gbtQkZuZ5BbpdKyrRkvU2i0,8611
|
|
1138
|
+
DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_PilotStatusAgent.py,sha256=0Bbcxw2AWNOjYYK12zlnLt2Y8U78iNwzWYWwvPsFImc,2808
|
|
1139
|
+
DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_PushJobAgent.py,sha256=hZzRiYivEmiJBlZZ9aiZuD77_IQT5pORDaHt47OljOU,14888
|
|
1140
1140
|
DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_SiteDirector.py,sha256=o6imUULkKrvbmkfpvER8wyg0Ncn3gxvJNTNO8xKX7_w,11670
|
|
1141
|
-
DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_StalledJobAgent.py,sha256=
|
|
1141
|
+
DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_StalledJobAgent.py,sha256=egqcddrpSMDQitJg7rR97klegBwliX4e0spPPaN6rJ0,2295
|
|
1142
1142
|
DIRAC/WorkloadManagementSystem/Client/CPUNormalization.py,sha256=txBgRfnTAY5KykpKRrK1jp5x4FInWjv-Rja4R7Dqdis,5423
|
|
1143
1143
|
DIRAC/WorkloadManagementSystem/Client/DownloadInputData.py,sha256=Ug2mhig5KbC1d4fYsVLpFhE5SvWhUJpVp7TuP8GxJxs,16285
|
|
1144
1144
|
DIRAC/WorkloadManagementSystem/Client/InputDataByProtocol.py,sha256=tjK6L8iNqWOBENcGJbG0yJsQYwGvFLRFcTMNnrusFAI,12837
|
|
@@ -1205,9 +1205,9 @@ DIRAC/WorkloadManagementSystem/FutureClient/JobMonitoringClient.py,sha256=3Mjq3h
|
|
|
1205
1205
|
DIRAC/WorkloadManagementSystem/FutureClient/JobStateUpdateClient.py,sha256=PG3JkQPgmPacjTLTCHTobZeKys4nxObs0D_Axfrl2Uw,6650
|
|
1206
1206
|
DIRAC/WorkloadManagementSystem/FutureClient/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1207
1207
|
DIRAC/WorkloadManagementSystem/JobWrapper/JobExecutionCoordinator.py,sha256=Y64YnkrKklOkXnV5wKsgzBONFljVJ0ByFVUMFNkiGAU,2461
|
|
1208
|
-
DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py,sha256
|
|
1209
|
-
DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapperOfflineTemplate.py,sha256=
|
|
1210
|
-
DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapperTemplate.py,sha256=
|
|
1208
|
+
DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py,sha256=-I2BYiLsJqPOQbkcSX2ETqGydqg0IVg01UySRdHMkgA,74794
|
|
1209
|
+
DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapperOfflineTemplate.py,sha256=NTt93clnLtbtlXTsBA4ecNppILYiD4s0Oxo1ywN7aqM,2490
|
|
1210
|
+
DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapperTemplate.py,sha256=uVDmZ65NWTr48GHUZQ7MtUMGgfLzMG8P7ZnFXspynnA,3312
|
|
1211
1211
|
DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapperUtilities.py,sha256=5w_4PMnaHhuexChADDvt1L9Ih1PstdUuYWObnlv9Dto,10072
|
|
1212
1212
|
DIRAC/WorkloadManagementSystem/JobWrapper/Watchdog.py,sha256=UWVDC_tWzlE9i5PsLycrRda4j3hWjaK1RnQVOvydg6U,38857
|
|
1213
1213
|
DIRAC/WorkloadManagementSystem/JobWrapper/__init__.py,sha256=e9Oa_ddNLweR3Lp_HOMK6WqqCWWj2SLPxF5UH4F19ic,61
|
|
@@ -1296,9 +1296,9 @@ DIRAC/tests/Workflow/Integration/exe-script.py,sha256=B_slYdTocEzqfQLRhwuPiLyYUn
|
|
|
1296
1296
|
DIRAC/tests/Workflow/Integration/helloWorld.py,sha256=tBgEHH3ZF7ZiTS57gtmm3DW-Qxgm_57HWHpM-Y8XSws,205
|
|
1297
1297
|
DIRAC/tests/Workflow/Regression/helloWorld.py,sha256=69eCgFuVSYo-mK3Dj2dw1c6g86sF5FksKCf8V2aGVoM,509
|
|
1298
1298
|
DIRAC/tests/Workflow/Regression/helloWorld.xml,sha256=xwydIcFTAHIX-YPfQfyxuQ7hzvIO3IhR3UAF7ORgkGg,5310
|
|
1299
|
-
dirac-9.0.
|
|
1300
|
-
dirac-9.0.
|
|
1301
|
-
dirac-9.0.
|
|
1302
|
-
dirac-9.0.
|
|
1303
|
-
dirac-9.0.
|
|
1304
|
-
dirac-9.0.
|
|
1299
|
+
dirac-9.0.14.dist-info/licenses/LICENSE,sha256=uyr4oV6jmjUeepXZPPjkJRwa5q5MrI7jqJz5sVXNblQ,32452
|
|
1300
|
+
dirac-9.0.14.dist-info/METADATA,sha256=Qn-KU8OTRd6X5FbEQe0094bZO7igRbHhIkukKHxKJjA,10039
|
|
1301
|
+
dirac-9.0.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1302
|
+
dirac-9.0.14.dist-info/entry_points.txt,sha256=hupzIL8aVmjK3nn7RLKdhcaiPmLOiD3Kulh3CSDHKmw,16492
|
|
1303
|
+
dirac-9.0.14.dist-info/top_level.txt,sha256=RISrnN9kb_mPqmVu8_o4jF-DSX8-h6AcgfkO9cgfkHA,6
|
|
1304
|
+
dirac-9.0.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|