databutton 0.36.11__tar.gz → 0.36.12__tar.gz

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.
Files changed (27) hide show
  1. {databutton-0.36.11 → databutton-0.36.12}/PKG-INFO +1 -1
  2. {databutton-0.36.11 → databutton-0.36.12}/databutton/rag/chroma.py +1 -1
  3. {databutton-0.36.11 → databutton-0.36.12}/databutton/version.py +1 -1
  4. {databutton-0.36.11 → databutton-0.36.12}/pyproject.toml +1 -1
  5. {databutton-0.36.11 → databutton-0.36.12}/LICENSE +0 -0
  6. {databutton-0.36.11 → databutton-0.36.12}/README.md +0 -0
  7. {databutton-0.36.11 → databutton-0.36.12}/databutton/__init__.py +0 -0
  8. {databutton-0.36.11 → databutton-0.36.12}/databutton/cachetools.py +0 -0
  9. {databutton-0.36.11 → databutton-0.36.12}/databutton/internal/__init__.py +0 -0
  10. {databutton-0.36.11 → databutton-0.36.12}/databutton/internal/auth.py +0 -0
  11. {databutton-0.36.11 → databutton-0.36.12}/databutton/internal/byteutils.py +0 -0
  12. {databutton-0.36.11 → databutton-0.36.12}/databutton/internal/dbapiclient.py +0 -0
  13. {databutton-0.36.11 → databutton-0.36.12}/databutton/internal/headers.py +0 -0
  14. {databutton-0.36.11 → databutton-0.36.12}/databutton/internal/httpxclient.py +0 -0
  15. {databutton-0.36.11 → databutton-0.36.12}/databutton/internal/performedby.py +0 -0
  16. {databutton-0.36.11 → databutton-0.36.12}/databutton/internal/retries.py +0 -0
  17. {databutton-0.36.11 → databutton-0.36.12}/databutton/jobs/__init__.py +0 -0
  18. {databutton-0.36.11 → databutton-0.36.12}/databutton/jobs/run.py +0 -0
  19. {databutton-0.36.11 → databutton-0.36.12}/databutton/notify/__init__.py +0 -0
  20. {databutton-0.36.11 → databutton-0.36.12}/databutton/notify/email.py +0 -0
  21. {databutton-0.36.11 → databutton-0.36.12}/databutton/notify/send.py +0 -0
  22. {databutton-0.36.11 → databutton-0.36.12}/databutton/rag/__init__.py +0 -0
  23. {databutton-0.36.11 → databutton-0.36.12}/databutton/secrets/__init__.py +0 -0
  24. {databutton-0.36.11 → databutton-0.36.12}/databutton/secrets/secrets.py +0 -0
  25. {databutton-0.36.11 → databutton-0.36.12}/databutton/storage/__init__.py +0 -0
  26. {databutton-0.36.11 → databutton-0.36.12}/databutton/storage/storage.py +0 -0
  27. {databutton-0.36.11 → databutton-0.36.12}/databutton/user.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: databutton
3
- Version: 0.36.11
3
+ Version: 0.36.12
4
4
  Summary: The CLI for databutton.com
5
5
  License: Databutton
6
6
  Author: Databutton
@@ -24,7 +24,7 @@ class Chroma:
24
24
  with open(".tmp/chroma/chroma.zip", "wb") as file:
25
25
  file.write(stream)
26
26
  shutil.unpack_archive("chroma.zip", self.path)
27
- finally:
27
+ except FileNotFoundError:
28
28
  pass
29
29
  # Instigate the client
30
30
  the_client = chromadb.PersistentClient(self.path)
@@ -5,4 +5,4 @@ This module contains project version information.
5
5
  .. moduleauthor:: Databutton <support@databutton.com>
6
6
  """
7
7
 
8
- __version__ = "0.36.11"
8
+ __version__ = "0.36.12"
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "databutton"
3
- version = "0.36.11"
3
+ version = "0.36.12"
4
4
  description = "The CLI for databutton.com"
5
5
  authors = ["Databutton <hi@databutton.io>"]
6
6
  license = "Databutton"
File without changes
File without changes