ezmsg-baseproc 1.0.1__py3-none-any.whl → 1.0.2__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.
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '1.0.1'
32
- __version_tuple__ = version_tuple = (1, 0, 1)
31
+ __version__ = version = '1.0.2'
32
+ __version_tuple__ = version_tuple = (1, 0, 2)
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -31,20 +31,29 @@ def _setup_logger(append: bool = False) -> logging.Logger:
31
31
  write_header = True
32
32
  if logpath.exists() and logpath.is_file():
33
33
  if append:
34
- with open(logpath) as f:
35
- first_line = f.readline().rstrip()
36
- if first_line == HEADER:
34
+ try:
35
+ with open(logpath) as f:
36
+ first_line = f.readline().rstrip()
37
+ if first_line == HEADER:
38
+ write_header = False
39
+ else:
40
+ # Remove the file if appending, but headers do not match
41
+ ezmsg_logger = logging.getLogger("ezmsg")
42
+ ezmsg_logger.warning(
43
+ "Profiling header mismatch: please make sure to use the same version of "
44
+ "ezmsg for all processes."
45
+ )
46
+ logpath.unlink()
47
+ except (PermissionError, OSError):
48
+ # On Windows, file may be locked by another process - just append
37
49
  write_header = False
38
- else:
39
- # Remove the file if appending, but headers do not match
40
- ezmsg_logger = logging.getLogger("ezmsg")
41
- ezmsg_logger.warning(
42
- "Profiling header mismatch: please make sure to use the same version of ezmsg for all processes."
43
- )
44
- logpath.unlink()
45
50
  else:
46
51
  # Remove the file if not appending
47
- logpath.unlink()
52
+ try:
53
+ logpath.unlink()
54
+ except (PermissionError, OSError):
55
+ # On Windows, file may be locked by another process - continue anyway
56
+ pass
48
57
 
49
58
  # Create a logger with the name "ezprofile"
50
59
  _logger = logging.getLogger("ezprofile")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ezmsg-baseproc
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Base processor classes and protocols for ezmsg signal processing pipelines
5
5
  Author-email: Griffin Milsap <griffin.milsap@gmail.com>, Preston Peranich <pperanich@gmail.com>, Chadwick Boulay <chadwick.boulay@gmail.com>, Kyle McGraw <kmcgraw@blackrockneuro.com>
6
6
  License-Expression: MIT
@@ -1,5 +1,5 @@
1
1
  ezmsg/baseproc/__init__.py,sha256=zmhdrRTnj3-ilBitu6zBniV04HJXc_fM_tKYiapFGko,3830
2
- ezmsg/baseproc/__version__.py,sha256=JvmBpae6cHui8lSCsCcZQAxzawN2NERHGsr-rIUeJMo,704
2
+ ezmsg/baseproc/__version__.py,sha256=ZTgKq8LPNy3l9uR2ke-VtLhvvl5l71frQ9wO76n1L5k,704
3
3
  ezmsg/baseproc/composite.py,sha256=Lin4K_rmS2Tnxt-m8daP-PUyeeqL4id5JkVh-AUNrQw,14901
4
4
  ezmsg/baseproc/processor.py,sha256=Ir9FtNuVG4yc-frwNxoYrlld99ff1mXwwGWaHxEJ6tY,8056
5
5
  ezmsg/baseproc/protocols.py,sha256=QRFh2t-rQgOzU_nlvz5muH4RZWVuzt2VvQ0e_yFy3ZE,5062
@@ -8,9 +8,9 @@ ezmsg/baseproc/units.py,sha256=TRhjDKw0lqUUst7BHYJKP3AhGpRd6mvcdKxULfeWjA0,10283
8
8
  ezmsg/baseproc/util/__init__.py,sha256=hvMUJOBuqioER50GZ5-GZiQbQ9NtQYEze13ZlR2jbMA,37
9
9
  ezmsg/baseproc/util/asio.py,sha256=0sF5oDc58DSLlcEgoUpNiqjjcbqnZhjSpQrXn6IdosM,4960
10
10
  ezmsg/baseproc/util/message.py,sha256=l_b1b6bXX8N6VF9RbUELzsHs73cKkDURBdIr0lt3CY0,909
11
- ezmsg/baseproc/util/profile.py,sha256=QlBcIE5H6pA8Z2xbR08NYO3ANjCrJRWy8_BDIURWyOc,5760
11
+ ezmsg/baseproc/util/profile.py,sha256=MOQDsFsW6ddXT0uAOgytW3aK_AZW5ieA16Pz2hWuE2o,6189
12
12
  ezmsg/baseproc/util/typeresolution.py,sha256=WCHHYIrMMZ1CfwJWVlJPQgFyY2gnGRNFJVQynAsee7Y,3113
13
- ezmsg_baseproc-1.0.1.dist-info/METADATA,sha256=1HW8QkuC8Vv9r4bBo9CNlKg-kVr4TE2CmN5ieb5Q0zU,3310
14
- ezmsg_baseproc-1.0.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
15
- ezmsg_baseproc-1.0.1.dist-info/licenses/LICENSE,sha256=BDD8rfac1Ur7mp0_3izEdr6fHgSA3Or6U1Kb0ZAWsow,1066
16
- ezmsg_baseproc-1.0.1.dist-info/RECORD,,
13
+ ezmsg_baseproc-1.0.2.dist-info/METADATA,sha256=CheEH-wdizmhiB4SIbCg5vpgiDZ73i4ucM5ktR3yhNc,3310
14
+ ezmsg_baseproc-1.0.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
15
+ ezmsg_baseproc-1.0.2.dist-info/licenses/LICENSE,sha256=BDD8rfac1Ur7mp0_3izEdr6fHgSA3Or6U1Kb0ZAWsow,1066
16
+ ezmsg_baseproc-1.0.2.dist-info/RECORD,,