junifer 0.0.3.dev73__py3-none-any.whl → 0.0.3.dev75__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.
junifer/_version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # file generated by setuptools_scm
2
2
  # don't change, don't track in version control
3
- __version__ = version = '0.0.3.dev73'
4
- __version_tuple__ = version_tuple = (0, 0, 3, 'dev73')
3
+ __version__ = version = '0.0.3.dev75'
4
+ __version_tuple__ = version_tuple = (0, 0, 3, 'dev75')
junifer/api/decorators.py CHANGED
@@ -39,20 +39,24 @@ def register_datagrabber(klass: Type) -> Type:
39
39
 
40
40
 
41
41
  def register_datareader(klass: Type) -> Type:
42
- """Datareader registration decorator.
42
+ """Register DataReader.
43
43
 
44
- Registers the datareader so it can be used by name.
44
+ Registers the DataReader so it can be used by name.
45
45
 
46
46
  Parameters
47
47
  ----------
48
48
  klass: class
49
- The class of the datareader to register.
49
+ The class of the DataReader to register.
50
50
 
51
51
  Returns
52
52
  -------
53
53
  klass: class
54
54
  The unmodified input class.
55
55
 
56
+ Notes
57
+ -----
58
+ It should only be used as a decorator.
59
+
56
60
  """
57
61
  register(
58
62
  step="datareader",
@@ -246,9 +246,9 @@ def test_queue_correct_yaml_config(
246
246
  tmp_path : pathlib.Path
247
247
  The path to the test directory.
248
248
  monkeypatch : pytest.MonkeyPatch
249
- The monkeypatch object.
249
+ The pytest.MonkeyPatch object.
250
250
  caplog : pytest.LogCaptureFixture
251
- The logcapturefixture object.
251
+ The pytest.LogCaptureFixture object.
252
252
 
253
253
  """
254
254
  with monkeypatch.context() as m:
@@ -305,7 +305,7 @@ def test_queue_invalid_job_queue(
305
305
  tmp_path : pathlib.Path
306
306
  The path to the test directory.
307
307
  monkeypatch : pytest.MonkeyPatch
308
- The monkeypatch object.
308
+ The pytest.MonkeyPatch object.
309
309
 
310
310
  """
311
311
  with pytest.raises(ValueError, match="Unknown queue kind"):
@@ -328,7 +328,7 @@ def test_queue_assets_disallow_overwrite(
328
328
  tmp_path : pathlib.Path
329
329
  The path to the test directory.
330
330
  monkeypatch : pytest.MonkeyPatch
331
- The monkeypatch object.
331
+ The pytest.MonkeyPatch object.
332
332
 
333
333
  """
334
334
  with pytest.raises(ValueError, match="Either delete the directory"):
@@ -360,9 +360,9 @@ def test_queue_assets_allow_overwrite(
360
360
  tmp_path : pathlib.Path
361
361
  The path to the test directory.
362
362
  monkeypatch : pytest.MonkeyPatch
363
- The monkeypatch object.
363
+ The pytest.MonkeyPatch object.
364
364
  caplog : pytest.LogCaptureFixture
365
- The logcapturefixture object.
365
+ The pytest.LogCaptureFixture object.
366
366
 
367
367
  """
368
368
  with monkeypatch.context() as m:
@@ -405,9 +405,9 @@ def test_queue_with_imports(
405
405
  tmp_path : pathlib.Path
406
406
  The path to the test directory.
407
407
  monkeypatch : pytest.MonkeyPatch
408
- The monkeypatch object.
408
+ The pytest.MonkeyPatch object.
409
409
  caplog : pytest.LogCaptureFixture
410
- The logcapturefixture object.
410
+ The pytest.LogCaptureFixture object.
411
411
  with_ : str or list of str
412
412
  The parametrized imports.
413
413
 
@@ -456,9 +456,9 @@ def test_queue_with_elements(
456
456
  tmp_path : pathlib.Path
457
457
  The path to the test directory.
458
458
  monkeypatch : pytest.MonkeyPatch
459
- The monkeypatch object.
459
+ The pytest.MonkeyPatch object.
460
460
  caplog : pytest.LogCaptureFixture
461
- The logcapturefixture object.
461
+ The pytest.LogCaptureFixture object.
462
462
  elements : str of list of str
463
463
  The parametrized elements for the queue.
464
464
 
@@ -486,9 +486,9 @@ def test_queue_without_elements(
486
486
  tmp_path : pathlib.Path
487
487
  The path to the test directory.
488
488
  monkeypatch : pytest.MonkeyPatch
489
- The monkeypatch object.
489
+ The pytest.MonkeyPatch object.
490
490
  caplog : pytest.LogCaptureFixture
491
- The logcapturefixture object.
491
+ The pytest.LogCaptureFixture object.
492
492
 
493
493
  """
494
494
  with monkeypatch.context() as m:
@@ -512,7 +512,7 @@ def test_queue_condor_invalid_python_env(
512
512
  tmp_path : pathlib.Path
513
513
  The path to the test directory.
514
514
  monkeypatch : pytest.MonkeyPatch
515
- The monkeypatch object.
515
+ The pytest.MonkeyPatch object.
516
516
 
517
517
  """
518
518
  with pytest.raises(ValueError, match="Unknown env kind"):
@@ -537,9 +537,9 @@ def test_queue_condor_conda_python(
537
537
  tmp_path : pathlib.Path
538
538
  The path to the test directory.
539
539
  monkeypatch : pytest.MonkeyPatch
540
- The monkeypatch object.
540
+ The pytest.MonkeyPatch object.
541
541
  caplog : pytest.LogCaptureFixture
542
- The logcapturefixture object.
542
+ The pytest.LogCaptureFixture object.
543
543
 
544
544
  """
545
545
  with monkeypatch.context() as m:
@@ -571,9 +571,9 @@ def test_queue_condor_conda_pre_run_python(
571
571
  tmp_path : pathlib.Path
572
572
  The path to the test directory.
573
573
  monkeypatch : pytest.MonkeyPatch
574
- The monkeypatch object.
574
+ The pytest.MonkeyPatch object.
575
575
  caplog : pytest.LogCaptureFixture
576
- The logcapturefixture object.
576
+ The pytest.LogCaptureFixture object.
577
577
 
578
578
  """
579
579
  with monkeypatch.context() as m:
@@ -613,9 +613,9 @@ def test_queue_condor_venv_python(
613
613
  tmp_path : pathlib.Path
614
614
  The path to the test directory.
615
615
  monkeypatch : pytest.MonkeyPatch
616
- The monkeypatch object.
616
+ The pytest.MonkeyPatch object.
617
617
  caplog : pytest.LogCaptureFixture
618
- The logcapturefixture object.
618
+ The pytest.LogCaptureFixture object.
619
619
 
620
620
  """
621
621
  with monkeypatch.context() as m:
@@ -677,9 +677,9 @@ def test_queue_condor_assets_generation(
677
677
  tmp_path : pathlib.Path
678
678
  The path to the test directory.
679
679
  monkeypatch : pytest.MonkeyPatch
680
- The monkeypatch object.
680
+ The pytest.MonkeyPatch object.
681
681
  caplog : pytest.LogCaptureFixture
682
- The logcapturefixture object.
682
+ The pytest.LogCaptureFixture object.
683
683
  elements : str
684
684
  The parametrized element names.
685
685
  env : dict
@@ -794,7 +794,7 @@ def test_queue_condor_extra_preamble(
794
794
  tmp_path : pathlib.Path
795
795
  The path to the test directory.
796
796
  monkeypatch : pytest.MonkeyPatch
797
- The monkeypatch object.
797
+ The pytest.MonkeyPatch object.
798
798
 
799
799
  """
800
800
  jobname = "condor_extra_preamble_check"
@@ -839,9 +839,9 @@ def test_queue_condor_submission_fail(
839
839
  tmp_path : pathlib.Path
840
840
  The path to the test directory.
841
841
  monkeypatch : pytest.MonkeyPatch
842
- The monkeypatch object.
842
+ The pytest.MonkeyPatch object.
843
843
  caplog : pytest.LogCaptureFixture
844
- The logcapturefixture object.
844
+ The pytest.LogCaptureFixture object.
845
845
 
846
846
  """
847
847
  with pytest.raises(
@@ -1,4 +1,4 @@
1
- """Provide class for default data reader."""
1
+ """Provide concrete implementation for default DataReader."""
2
2
 
3
3
  # Authors: Federico Raimondo <f.raimondo@fz-juelich.de>
4
4
  # Synchon Mandal <s.mandal@fz-juelich.de>
@@ -32,7 +32,7 @@ _readers["TSV"] = {"func": pd.read_csv, "params": {"sep": "\t"}}
32
32
 
33
33
  @register_datareader
34
34
  class DefaultDataReader(PipelineStepMixin, UpdateMetaMixin):
35
- """Mixin class for default data reader."""
35
+ """Concrete implementation for common data reading."""
36
36
 
37
37
  def validate_input(self, input: List[str]) -> List[str]:
38
38
  """Validate input.
@@ -48,6 +48,7 @@ class DefaultDataReader(PipelineStepMixin, UpdateMetaMixin):
48
48
  list of str
49
49
  The actual elements of the input that will be processed by this
50
50
  pipeline step.
51
+
51
52
  """
52
53
  # Nothing to validate, any input is fine
53
54
  return input
@@ -1,4 +1,4 @@
1
- """Provide tests for default data reader."""
1
+ """Provide tests for DefaultDataReader."""
2
2
 
3
3
  # Authors: Federico Raimondo <f.raimondo@fz-juelich.de>
4
4
  # Synchon Mandal <s.mandal@fz-juelich.de>
@@ -19,8 +19,8 @@ from junifer.datareader import DefaultDataReader
19
19
  @pytest.mark.parametrize(
20
20
  "type_", [["T1w", "BOLD", "T2", "dwi"], [], ["whatever"]]
21
21
  )
22
- def test_validation(type_) -> None:
23
- """Test validating input/output.
22
+ def test_DefaultDataReader_validation(type_) -> None:
23
+ """Test DefaultDataReader validating input/output.
24
24
 
25
25
  Parameters
26
26
  ----------
@@ -34,8 +34,8 @@ def test_validation(type_) -> None:
34
34
  assert reader.validate(type_) == type_
35
35
 
36
36
 
37
- def test_meta() -> None:
38
- """Test reader metadata."""
37
+ def test_DefaultDataReader_meta() -> None:
38
+ """Test DefaultDataReader metadata."""
39
39
  reader = DefaultDataReader()
40
40
 
41
41
  nib_data_path = Path(nib_testing.data_path)
@@ -52,8 +52,8 @@ def test_meta() -> None:
52
52
  @pytest.mark.parametrize(
53
53
  "fname", ["example4d.nii.gz", "reoriented_anat_moved.nii"]
54
54
  )
55
- def test_read_nifti(fname: str) -> None:
56
- """Test reading NIFTI files.
55
+ def test_DefaultDataReader_nifti(fname: str) -> None:
56
+ """Test DefaultDataReader reading NIfTI files.
57
57
 
58
58
  Parameters
59
59
  ----------
@@ -85,8 +85,8 @@ def test_read_nifti(fname: str) -> None:
85
85
  assert output["BOLD"]["path"] == output2["BOLD"]["path"]
86
86
 
87
87
 
88
- def test_read_unknown() -> None:
89
- """Test (not) reading unknown files."""
88
+ def test_DefaultDataReader_unknown() -> None:
89
+ """Test DefaultDataReader (not) reading unknown files."""
90
90
  reader = DefaultDataReader()
91
91
  nib_data_path = Path(nib_testing.data_path)
92
92
 
@@ -115,8 +115,8 @@ def test_read_unknown() -> None:
115
115
  reader.fit_transform(input)
116
116
 
117
117
 
118
- def test_read_csv(tmp_path: Path) -> None:
119
- """Test reading CSV files.
118
+ def test_DefaultDataReader_csv(tmp_path: Path) -> None:
119
+ """Test DefaultDataReader reading CSV files.
120
120
 
121
121
  Parameters
122
122
  ----------
@@ -25,8 +25,8 @@ class MarkerCollection:
25
25
  ----------
26
26
  markers : list of marker-like
27
27
  The markers to compute.
28
- datareader : datareader-like, optional
29
- The datareader to use (default None).
28
+ datareader : DataReader-like object, optional
29
+ The DataReader to use (default None).
30
30
  preprocessing : preprocessing-like, optional
31
31
  The preprocessing steps to apply.
32
32
  storage : storage-like, optional
@@ -42,7 +42,7 @@ def test_register(
42
42
  Parameters
43
43
  ----------
44
44
  caplog : pytest.LogCaptureFixture
45
- A pytest fixture to capture logging.
45
+ The pytest.LogCaptureFixture object.
46
46
  step : str
47
47
  The parametrized name of the step.
48
48
  name : str
@@ -33,7 +33,7 @@ def test_log_versions(caplog: pytest.LogCaptureFixture) -> None:
33
33
  Parameters
34
34
  ----------
35
35
  caplog : pytest.LogCaptureFixture
36
- A pytest fixture to capture logging.
36
+ The pytest.LogCaptureFixture object.
37
37
 
38
38
  """
39
39
  # Set log capturing at INFO
@@ -161,7 +161,7 @@ def test_log_stdout(caplog: pytest.LogCaptureFixture) -> None:
161
161
  Parameters
162
162
  ----------
163
163
  caplog : pytest.LogCaptureFixture
164
- A pytest fixture to capture logging.
164
+ The pytest.LogCaptureFixture object.
165
165
 
166
166
  """
167
167
  configure_logging()
@@ -197,7 +197,7 @@ def test_raise_error(caplog: pytest.LogCaptureFixture) -> None:
197
197
  Parameters
198
198
  ----------
199
199
  caplog : pytest.LogCaptureFixture
200
- A pytest fixture to capture logging.
200
+ The pytest.LogCaptureFixture object.
201
201
 
202
202
  """
203
203
  with pytest.raises(ValueError, match="test error"):
@@ -212,7 +212,7 @@ def test_warn_with_log(caplog: pytest.LogCaptureFixture) -> None:
212
212
  Parameters
213
213
  ----------
214
214
  caplog : pytest.LogCaptureFixture
215
- A pytest fixture to capture logging.
215
+ The pytest.LogCaptureFixture object.
216
216
 
217
217
  """
218
218
  with pytest.warns(RuntimeWarning, match="test warning"):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: junifer
3
- Version: 0.0.3.dev73
3
+ Version: 0.0.3.dev75
4
4
  Summary: JUelich NeuroImaging FEature extractoR
5
5
  Author-email: Fede Raimondo <f.raimondo@fz-juelich.de>, Synchon Mandal <s.mandal@fz-juelich.de>
6
6
  Maintainer-email: Fede Raimondo <f.raimondo@fz-juelich.de>, Synchon Mandal <s.mandal@fz-juelich.de>
@@ -1,9 +1,9 @@
1
1
  junifer/__init__.py,sha256=rJgTGeR-SOntQoLSGo36zKDTE8IMRBn2-YwC0JSNUpU,377
2
- junifer/_version.py,sha256=7-PPrI05NryOuKMJEsx3ZEKwZiGZtVKFCqh95qMm3I8,175
2
+ junifer/_version.py,sha256=laYgsBVZiMM-T9aIfloEMTq4U0xz0xKz3Xq41tGUHew,175
3
3
  junifer/stats.py,sha256=KUX4jJcLWnlE34coet8EkdFypFd-td4Vtpx5LvlomVs,5879
4
4
  junifer/api/__init__.py,sha256=YILu9M7SC0Ri4CVd90fELH2OnK_gvCYAXCoqBNCFE8E,257
5
5
  junifer/api/cli.py,sha256=n9jFA68LTdyv3FQrshfwwZJVy3jEWZpf3x6YVyvnIhA,9833
6
- junifer/api/decorators.py,sha256=_ZvUV3cwrbUSHDRfHLsQxe8fjT8whkf_jS9x_zlsHfE,2530
6
+ junifer/api/decorators.py,sha256=8bnwHPAe7VgzKxl--M_e0umdAlTVSzaJQHEJZ5kof5k,2580
7
7
  junifer/api/functions.py,sha256=yRxUug8nEdXuZOpbCJGZ-EpvUtTOArcn8_pLcDq6j-Y,22518
8
8
  junifer/api/parser.py,sha256=0Eat3oPJFSVlpQA4hJ08QbocjTfLL92cPTItHu_yFKU,3314
9
9
  junifer/api/utils.py,sha256=dyjTdPMwX9qeCrn8SQT2Pjshfnu-y1FEyujV7lCzvm0,3333
@@ -15,7 +15,7 @@ junifer/api/res/afni/afni,sha256=6vAE_vVS-TFt-W32AdMs_Y6c7fsq_RSrPf9Jafz4x9Q,41
15
15
  junifer/api/res/afni/run_afni_docker.sh,sha256=ABKs-pa-lCGIxdCkqvhUar2pOj4xwQgo4QUg8UXvDho,1106
16
16
  junifer/api/tests/test_api_utils.py,sha256=Yls1WwARWA4WEBEUqdnoxobLNGNrrcaKFCXpyR-EUZQ,2321
17
17
  junifer/api/tests/test_cli.py,sha256=-V-oyKiEqnIOUOiO_5KHMKuAa71Azmd48Ghy5FcP5H0,2797
18
- junifer/api/tests/test_functions.py,sha256=h6TvTry9P8_OLO6XdusXJV4p9ftrqQjg1Qi9hNLpUjo,24484
18
+ junifer/api/tests/test_functions.py,sha256=7Jy2TdRzPnMPdfPX8UgdodWKlRRRp8gxowC1A2jwtu8,24652
19
19
  junifer/api/tests/test_parser.py,sha256=3GZYamYbpW8bGnx95_RQ1uT783or_H-yqzZ138wQYmE,6107
20
20
  junifer/api/tests/data/gmd_mean.yaml,sha256=Ohb_C5cfQMK-59U9O1ZhejXyBtzLc5Y4cv8QyYq2azg,330
21
21
  junifer/api/tests/data/gmd_mean_htcondor.yaml,sha256=f7NLv_KIJXTiPNFmOWl2Vw8EfwojhfkGtwbh5prbd6w,417
@@ -86,8 +86,8 @@ junifer/datagrabber/tests/test_multiple.py,sha256=j7_zJ-AyGzmvmoI8fbu6CIcmzMnUO0
86
86
  junifer/datagrabber/tests/test_pattern.py,sha256=66TCpCjHVzwTtKsedtw7mZsku4gA3_I9fQt0PUA8DfU,9789
87
87
  junifer/datagrabber/tests/test_pattern_datalad.py,sha256=N1RhFi7lkx44chZNpLYH_0zZtb_0Z3rMo5EWxJWC_uU,6103
88
88
  junifer/datareader/__init__.py,sha256=WWoiIz6y0EdExWO3WCGiERNw3Y3WUsXyHaWnHilP2kE,263
89
- junifer/datareader/default.py,sha256=hXKSWj_UFbghOlfJ0ZyeNafVi8FeuJUuUH9YJjkXo8Y,4038
90
- junifer/datareader/tests/test_default_reader.py,sha256=o2Y4zmSAQonhwaRF5YBcUc9t8YxMBzqdwKlIsgS1E58,5064
89
+ junifer/datareader/default.py,sha256=Ruumq98J2DOjZqgXHjGIO3NCFGcGfx4svJiqi-svTeo,4068
90
+ junifer/datareader/tests/test_default_reader.py,sha256=9dPZSkba1YQjFsA0XwdUbx5sq8DVIEZoy_WfMAcvRus,5220
91
91
  junifer/external/__init__.py,sha256=58gL7gNN_PI1GyN6r9CO035TzvJdi8S-zFg5reDt4Xc,116
92
92
  junifer/external/h5io/h5io/__init__.py,sha256=LG7ru_Rt3EOE2H4PGYfBhC12Iax3yeTquZkd8TICiKk,469
93
93
  junifer/external/h5io/h5io/_h5io.py,sha256=8dWZDYegoPcBkH_fHPdl0eXNWTaRdk9hfIQo8Mcegzo,28748
@@ -99,7 +99,7 @@ junifer/external/nilearn/junifer_nifti_spheres_masker.py,sha256=WVCnsr7_Wj5mqsMp
99
99
  junifer/external/nilearn/tests/test_junifer_nifti_spheres_masker.py,sha256=mQtMgOH7hrtw-Vm09e1ukn5PFN9SpNA3IPtUrAxBF10,10329
100
100
  junifer/markers/__init__.py,sha256=exUUmpDsPkoNa9FK6Y7pDusOYv56_zoci8hiOaxyswE,778
101
101
  junifer/markers/base.py,sha256=Uuaz8MvdHOfAnRGpUf6ISWgbNWzkmHIMo6f30jlW7zY,6109
102
- junifer/markers/collection.py,sha256=7Md-Gi8GyOQNvg6R1hoS2VGrPIPr1xEg4c8cCVcOmKM,4585
102
+ junifer/markers/collection.py,sha256=u5DAWdEPsYK1Jmqob1FZgzOK_cm_8JXJ2CpSVxgamBY,4592
103
103
  junifer/markers/ets_rss.py,sha256=tmGBjg-aBzMhYRQ3Q8uSvZ2bicNHQgJeDjy7KYnqFSY,4522
104
104
  junifer/markers/parcel_aggregation.py,sha256=QXcetgr7O0zhKQiC5gh-4aMs9lwhaqHoZLBlt1fYhPs,8613
105
105
  junifer/markers/sphere_aggregation.py,sha256=ipwH6wuYot9-MemhHs8sUSR3p6rFi2AUrDf7OBswe7s,7337
@@ -152,7 +152,7 @@ junifer/pipeline/registry.py,sha256=xHrLxHMymGUGL8kqVhQIWbBhhEoNHZn9C273IyvP9ss,
152
152
  junifer/pipeline/update_meta_mixin.py,sha256=4WYnmN0iX0k5kwbhRp_YB0AfphWMBpm58XM4kRR6lD0,1219
153
153
  junifer/pipeline/utils.py,sha256=jHgFxFVUH7nNFvt3AvY73gPK6DkiKrRQlopeQLl1jx4,3515
154
154
  junifer/pipeline/tests/test_pipeline_step_mixin.py,sha256=7h1sxQhU7aiTm5Jd0Otm-ItAxzz-ud5-5EWuykU3FUo,5085
155
- junifer/pipeline/tests/test_registry.py,sha256=JgmS1NIdU70EuEWvIC30oGTt7mFpZsQ_Dno3_rcvCjo,4105
155
+ junifer/pipeline/tests/test_registry.py,sha256=rYN0pO3gSueQ6XsasEM9VU5BkLyaNl8WaCZiaO8Rno0,4105
156
156
  junifer/pipeline/tests/test_update_meta_mixin.py,sha256=C9cDTZB-9CN4zYLeSHLSo0dpWrB8o1fj0jlWpcP9Wsc,1374
157
157
  junifer/preprocess/__init__.py,sha256=GPbiTHFhb9BzUOSgmo_SpgTFNMmkcCJPhQoUA2MQgJI,255
158
158
  junifer/preprocess/base.py,sha256=Wu-tQZmMJBWsqcyA8q6lBALfJUHBB_AakTbho3OBUAw,5493
@@ -186,11 +186,11 @@ junifer/utils/__init__.py,sha256=ZDPU9ezSKawAJhb-3T67jDf-16QEyF6e7ONyu-lnBtQ,277
186
186
  junifer/utils/fs.py,sha256=Jd9AoV2fIF7pT7KhXsn8T1O1fJ1_SFZgaFuOBAM7DG8,460
187
187
  junifer/utils/logging.py,sha256=cUB1KPnUzgOWm6FV_gMdnm5y0iMsAEM6MTvwan4dLkU,8957
188
188
  junifer/utils/tests/test_fs.py,sha256=WQS7cKlKEZ742CIuiOYYpueeAhY9PqlastfDVpVVtvE,923
189
- junifer/utils/tests/test_logging.py,sha256=uTzlwwlOv7bh_7DngitVFxCDbH_OWsqfeXEcNyKvF24,7748
190
- junifer-0.0.3.dev73.dist-info/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
191
- junifer-0.0.3.dev73.dist-info/LICENSE.md,sha256=z5aMVBrc-9kk0pxaOdOAkI62S5YhYMiF6ADsMtZmOZg,34353
192
- junifer-0.0.3.dev73.dist-info/METADATA,sha256=7Cgv8izSce0uhVL05aVO15NOnHVOR3LUJxwO27FQ9HM,6163
193
- junifer-0.0.3.dev73.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
194
- junifer-0.0.3.dev73.dist-info/entry_points.txt,sha256=DxFvKq0pOqRunAK0FxwJcoDfV1-dZvsFDpD5HRqSDhw,48
195
- junifer-0.0.3.dev73.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
196
- junifer-0.0.3.dev73.dist-info/RECORD,,
189
+ junifer/utils/tests/test_logging.py,sha256=bRdjpbzPoHjFoVUqDmU7ZQ6pj3PNg6ohtceA3nlFnHU,7748
190
+ junifer-0.0.3.dev75.dist-info/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
191
+ junifer-0.0.3.dev75.dist-info/LICENSE.md,sha256=z5aMVBrc-9kk0pxaOdOAkI62S5YhYMiF6ADsMtZmOZg,34353
192
+ junifer-0.0.3.dev75.dist-info/METADATA,sha256=e-yH7DQXDOSi6qRX4TcLGvv8oo_WgWjzQNTUQ4QWf_o,6163
193
+ junifer-0.0.3.dev75.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
194
+ junifer-0.0.3.dev75.dist-info/entry_points.txt,sha256=DxFvKq0pOqRunAK0FxwJcoDfV1-dZvsFDpD5HRqSDhw,48
195
+ junifer-0.0.3.dev75.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
196
+ junifer-0.0.3.dev75.dist-info/RECORD,,