gazu 0.10.7__py2.py3-none-any.whl → 0.10.9__py2.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.
gazu/__version__.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.10.7"
1
+ __version__ = "0.10.9"
gazu/sync.py CHANGED
@@ -625,10 +625,16 @@ def push_task_comment(
625
625
  {"annotations": preview["annotations"]},
626
626
  client=client_target,
627
627
  )
628
- os.remove(preview["file_path"])
628
+ try:
629
+ os.remove(preview["file_path"])
630
+ except OSError:
631
+ pass
629
632
 
630
633
  for attachment_path in attachments:
631
- os.remove(attachment_path)
634
+ try:
635
+ os.remove(attachment_path)
636
+ except OSError:
637
+ pass
632
638
 
633
639
  return comment
634
640
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gazu
3
- Version: 0.10.7
3
+ Version: 0.10.9
4
4
  Summary: Gazu is a client for Zou, the API to store the data of your CG production.
5
5
  Home-page: https://gazu.cg-wire.com/
6
6
  Author: CG Wire
@@ -32,7 +32,7 @@ Provides-Extra: dev
32
32
  Requires-Dist: wheel ; extra == 'dev'
33
33
  Provides-Extra: lint
34
34
  Requires-Dist: black ==24.4.2 ; (python_version >= "3.8") and extra == 'lint'
35
- Requires-Dist: pre-commit ==3.7.0 ; (python_version >= "3.9") and extra == 'lint'
35
+ Requires-Dist: pre-commit ==3.7.1 ; (python_version >= "3.9") and extra == 'lint'
36
36
  Provides-Extra: test
37
37
  Requires-Dist: pytest ; extra == 'test'
38
38
  Requires-Dist: pytest-cov ; extra == 'test'
@@ -1,5 +1,5 @@
1
1
  gazu/__init__.py,sha256=cek7Vq4FrzBIzMvtAjlL-3af5TOVLWywYBSMQQWuYec,3056
2
- gazu/__version__.py,sha256=0tXlefZZVkpPOSdzPCMF-P32mDAIZaCt77gWQCpBAjY,23
2
+ gazu/__version__.py,sha256=kuvtrETWL09e0YYSaYaCJhXuBRVoLrDNJ07lpCq9q-4,23
3
3
  gazu/asset.py,sha256=GWwam0yqHna_b9_5g5r0-O2zhMb7KlhfbIC17IOXKkY,14488
4
4
  gazu/cache.py,sha256=MnxrnfYN7wHNTTL7qzkEpYCYzWcolT56fqQ0_RegMbE,5879
5
5
  gazu/casting.py,sha256=5xmGMoU3MFgv1br8_5xyTx-Z7wo9r51wRisiblqcr94,3945
@@ -19,11 +19,11 @@ gazu/project.py,sha256=fssI_Bf5UqqRd9bfM68oyfkhjxwWvjdiAcYvvUhI5LY,12649
19
19
  gazu/scene.py,sha256=bYsy7zKdQfDTfeqNAlgaqGMs2Hhxdy40NGt6TX_FBdA,5307
20
20
  gazu/shot.py,sha256=bSfju-STx_HZO1K51bk2YrttIPxclnoGV07Kne7Bfl0,18525
21
21
  gazu/sorting.py,sha256=qSIO0pOHkj0Tl4gm9BJrYrcifWGGGmsW68Pl86zB_bg,266
22
- gazu/sync.py,sha256=xG6QbLDKJNSZEhtn3RHFk8ykDz-w2gnWM17Xgl6no_c,21466
22
+ gazu/sync.py,sha256=OMsbQDROTdEwlukazUXPGnlC29QcaaHvsmqv3WsSexo,21582
23
23
  gazu/task.py,sha256=4aO8Ggk4lagVaNkFIdFE0-HnCcWg6d38BTFuwlqbyRY,35193
24
24
  gazu/user.py,sha256=GyJf6mrynHvLllw3Hsiv-6wjaYTHO_PBNkJzyJjJA1A,9556
25
- gazu-0.10.7.dist-info/LICENSE,sha256=2n6rt7r999OuXp8iOqW9we7ORaxWncIbOwN1ILRGR2g,7651
26
- gazu-0.10.7.dist-info/METADATA,sha256=gsDnv2oWFHCACgbMIrQCBz13UGc_IsWDXHxsF-G9SmI,5181
27
- gazu-0.10.7.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
28
- gazu-0.10.7.dist-info/top_level.txt,sha256=nv7fRIVpYYyIlk_66hBmMyvWcSC7UU-r-GE8uC1u1Go,5
29
- gazu-0.10.7.dist-info/RECORD,,
25
+ gazu-0.10.9.dist-info/LICENSE,sha256=2n6rt7r999OuXp8iOqW9we7ORaxWncIbOwN1ILRGR2g,7651
26
+ gazu-0.10.9.dist-info/METADATA,sha256=sLotYNfoUP4pw25Cyw8cL0Y0pEWWwDhUAvxftsgEiJU,5181
27
+ gazu-0.10.9.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
28
+ gazu-0.10.9.dist-info/top_level.txt,sha256=nv7fRIVpYYyIlk_66hBmMyvWcSC7UU-r-GE8uC1u1Go,5
29
+ gazu-0.10.9.dist-info/RECORD,,
File without changes
File without changes