Skip to content

Commit

Permalink
Increase dotenv version dependency (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
philkra authored Aug 3, 2023
1 parent c1f973c commit 0f8eb86
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 17 deletions.
31 changes: 17 additions & 14 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "xata"
version = "1.0.0a5"
version = "1.0.0a6"
description = "Python client for Xata.io"
authors = ["Xata <support@xata.io>"]
license = "Apache-2.0"
Expand All @@ -10,7 +10,7 @@ documentation = "https://xata-py.readthedocs.io"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.28.1"
python-dotenv = "^0.21.0"
python-dotenv = ">=0.21,<2.0"
orjson = "^3.8.1"
deprecation = "^2.1.0"

Expand Down
2 changes: 1 addition & 1 deletion xata/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

# TODO this is a manual task, to keep in sync with pyproject.toml
# could/should be automated to keep in sync
__version__ = "1.0.0a5"
__version__ = "1.0.0a6"

PERSONAL_API_KEY_LOCATION = "~/.config/xata/key"
DEFAULT_DATA_PLANE_DOMAIN = "xata.sh"
Expand Down

0 comments on commit 0f8eb86

Please sign in to comment.