TDCRPy 0.0.58__py3-none-any.whl → 0.0.60__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.
Potentially problematic release.
This version of TDCRPy might be problematic. Click here for more details.
- {TDCRPy-0.0.58.dist-info → TDCRPy-0.0.60.dist-info}/METADATA +1 -1
- {TDCRPy-0.0.58.dist-info → TDCRPy-0.0.60.dist-info}/RECORD +7 -7
- tdcrpy/tests/__init__.py +1 -1
- tdcrpy/tests/{test_tdcpy.py → test_tdcrpy.py} +2 -1
- {TDCRPy-0.0.58.dist-info → TDCRPy-0.0.60.dist-info}/LICENCE.md +0 -0
- {TDCRPy-0.0.58.dist-info → TDCRPy-0.0.60.dist-info}/WHEEL +0 -0
- {TDCRPy-0.0.58.dist-info → TDCRPy-0.0.60.dist-info}/top_level.txt +0 -0
|
@@ -28,10 +28,10 @@ tdcrpy/docs/_build/html/py-modindex.html,sha256=5A2ePSMTRgs_5OJaJFzZiRC5kNoUEx77
|
|
|
28
28
|
tdcrpy/docs/_build/html/search.html,sha256=NBMD-Ue8PuwNkgzZf6l57JmygE8O6Rrj6A6vVylAIiA,3832
|
|
29
29
|
tdcrpy/docs/_build/html/source/modules.html,sha256=F8HKsi_oxQqJL8zvOsu5o4Hjj9sP0ft3B-qWkgHaoi4,9331
|
|
30
30
|
tdcrpy/docs/_build/html/source/tdcrpy.html,sha256=U6cUhBwu0006Cut6JTvsG833-Vdkg-wetXL4GqWUU5M,80675
|
|
31
|
-
tdcrpy/tests/__init__.py,sha256=
|
|
32
|
-
tdcrpy/tests/
|
|
33
|
-
TDCRPy-0.0.
|
|
34
|
-
TDCRPy-0.0.
|
|
35
|
-
TDCRPy-0.0.
|
|
36
|
-
TDCRPy-0.0.
|
|
37
|
-
TDCRPy-0.0.
|
|
31
|
+
tdcrpy/tests/__init__.py,sha256=my257xX92UfE5q_v64pgaVPdBi4Uv5Tqumx8tNIlhmw,18
|
|
32
|
+
tdcrpy/tests/test_tdcrpy.py,sha256=sNfRmDdaM8fxZZ50iT_15ORXJ4laai0cSp4V9FYty5w,3450
|
|
33
|
+
TDCRPy-0.0.60.dist-info/LICENCE.md,sha256=fuYzrZRiOAjJBzA1tsGQwojCgGROArb2Ec48GDTjlWM,1086
|
|
34
|
+
TDCRPy-0.0.60.dist-info/METADATA,sha256=09YYplpvrA9h6NCpsr3IVAvyTUv8v3MUmhL3NB4w1-E,2111
|
|
35
|
+
TDCRPy-0.0.60.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
|
|
36
|
+
TDCRPy-0.0.60.dist-info/top_level.txt,sha256=VgPJa9YJ7fi8wrr9qDJPLhu3tK1BcFRIP6Ib4r3BEfs,7
|
|
37
|
+
TDCRPy-0.0.60.dist-info/RECORD,,
|
tdcrpy/tests/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
import test_tdcrpy
|
|
@@ -11,7 +11,8 @@ Bureau International des Poids et Mesures
|
|
|
11
11
|
import unittest
|
|
12
12
|
import importlib.resources
|
|
13
13
|
import numpy as np
|
|
14
|
-
import tdcrpy
|
|
14
|
+
from .. import tdcrpy
|
|
15
|
+
|
|
15
16
|
|
|
16
17
|
with importlib.resources.path('tdcrpy', 'MCNP-MATRIX') as data_path:
|
|
17
18
|
fp1 = data_path / 'matrice/fichier/matrice_10ml-photon_1_200k.txt'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|