databutton 0.31.6__tar.gz → 0.31.8__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 (25) hide show
  1. {databutton-0.31.6 → databutton-0.31.8}/PKG-INFO +5 -5
  2. {databutton-0.31.6 → databutton-0.31.8}/databutton/version.py +1 -1
  3. {databutton-0.31.6 → databutton-0.31.8}/pyproject.toml +6 -6
  4. {databutton-0.31.6 → databutton-0.31.8}/LICENSE +0 -0
  5. {databutton-0.31.6 → databutton-0.31.8}/README.md +0 -0
  6. {databutton-0.31.6 → databutton-0.31.8}/databutton/__init__.py +0 -0
  7. {databutton-0.31.6 → databutton-0.31.8}/databutton/cachetools.py +0 -0
  8. {databutton-0.31.6 → databutton-0.31.8}/databutton/internal/__init__.py +0 -0
  9. {databutton-0.31.6 → databutton-0.31.8}/databutton/internal/auth.py +0 -0
  10. {databutton-0.31.6 → databutton-0.31.8}/databutton/internal/byteutils.py +0 -0
  11. {databutton-0.31.6 → databutton-0.31.8}/databutton/internal/dbapiclient.py +0 -0
  12. {databutton-0.31.6 → databutton-0.31.8}/databutton/internal/headers.py +0 -0
  13. {databutton-0.31.6 → databutton-0.31.8}/databutton/internal/httpxclient.py +0 -0
  14. {databutton-0.31.6 → databutton-0.31.8}/databutton/internal/performedby.py +0 -0
  15. {databutton-0.31.6 → databutton-0.31.8}/databutton/internal/retries.py +0 -0
  16. {databutton-0.31.6 → databutton-0.31.8}/databutton/jobs/__init__.py +0 -0
  17. {databutton-0.31.6 → databutton-0.31.8}/databutton/jobs/run.py +0 -0
  18. {databutton-0.31.6 → databutton-0.31.8}/databutton/notify/__init__.py +0 -0
  19. {databutton-0.31.6 → databutton-0.31.8}/databutton/notify/email.py +0 -0
  20. {databutton-0.31.6 → databutton-0.31.8}/databutton/notify/send.py +0 -0
  21. {databutton-0.31.6 → databutton-0.31.8}/databutton/secrets/__init__.py +0 -0
  22. {databutton-0.31.6 → databutton-0.31.8}/databutton/secrets/secrets.py +0 -0
  23. {databutton-0.31.6 → databutton-0.31.8}/databutton/storage/__init__.py +0 -0
  24. {databutton-0.31.6 → databutton-0.31.8}/databutton/storage/storage.py +0 -0
  25. {databutton-0.31.6 → databutton-0.31.8}/databutton/user.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: databutton
3
- Version: 0.31.6
3
+ Version: 0.31.8
4
4
  Summary: The CLI for databutton.com
5
5
  License: Databutton
6
6
  Author: Databutton
@@ -9,15 +9,15 @@ Requires-Python: >=3.10,<3.11
9
9
  Classifier: License :: Other/Proprietary License
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.10
12
- Requires-Dist: PyJWT (>=2.6.0,<3.0.0)
12
+ Requires-Dist: PyJWT (>=2.2.0,<3.0.0)
13
13
  Requires-Dist: PyYAML (>=6.0,<7.0)
14
14
  Requires-Dist: certifi (>=2022.12.7,<2023.0.0)
15
15
  Requires-Dist: cryptography (>=40.0.1,<41.0.0)
16
- Requires-Dist: httpx (>=0.24.0,<0.25.0)
16
+ Requires-Dist: httpx (>=0.20.0,<0.21.0)
17
17
  Requires-Dist: pandas (>=1.5.3,<2.0.0)
18
- Requires-Dist: pydantic (>=1.10.7,<2.0.0)
18
+ Requires-Dist: pydantic (>=1.8.0,<2.0.0)
19
19
  Requires-Dist: streamlit (>=1.20.0,<2.0.0)
20
- Requires-Dist: tenacity (>=8.2.2,<9.0.0)
20
+ Requires-Dist: tenacity (>=8.0.0,<9.0.0)
21
21
  Description-Content-Type: text/markdown
22
22
 
23
23
  # databutton-cli
@@ -5,4 +5,4 @@ This module contains project version information.
5
5
  .. moduleauthor:: Databutton <support@databutton.com>
6
6
  """
7
7
 
8
- __version__ = "0.31.6"
8
+ __version__ = "0.31.8"
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "databutton"
3
- version = "0.31.6"
3
+ version = "0.31.8"
4
4
  description = "The CLI for databutton.com"
5
5
  authors = ["Databutton <hi@databutton.io>"]
6
6
  license = "Databutton"
@@ -9,12 +9,12 @@ packages = [{ include = "databutton" }]
9
9
 
10
10
  [tool.poetry.dependencies]
11
11
  python = "~3.10"
12
- httpx = "^0.24.0"
12
+ httpx = "^0.20.0"
13
13
  pandas = "^1.5.3"
14
- pydantic = "^1.10.7"
15
- PyJWT = "^2.6.0"
14
+ pydantic = "^1.8.0"
15
+ PyJWT = "^2.2.0"
16
16
  PyYAML = "^6.0"
17
- tenacity = "^8.2.2"
17
+ tenacity = "^8.0.0"
18
18
  cryptography = "^40.0.1"
19
19
  certifi = "^2022.12.7"
20
20
  streamlit = "^1.20.0"
@@ -30,7 +30,7 @@ isort = "^5.12.0"
30
30
  python-semantic-release = "7.28.1"
31
31
  pytest-mock = "^3.7.0"
32
32
  pandas-stubs = "^1.5.2.221124"
33
- ruff = "^0.0.261"
33
+ ruff = "^0.0.265"
34
34
  streamlit = "^1.21.0"
35
35
 
36
36
  [build-system]
File without changes
File without changes