From c1f973cfade5d8a8053cc4df8444813a75396ffb Mon Sep 17 00:00:00 2001 From: Philip Krauss <35487337+philkra@users.noreply.github.com> Date: Thu, 3 Aug 2023 14:29:11 +0200 Subject: [PATCH] Revert 3.9 min Py version (#150) --- pyproject.toml | 4 ++-- xata/client.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e54399a..e36e98e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xata" -version = "1.0.0a4" +version = "1.0.0a5" description = "Python client for Xata.io" authors = ["Xata "] license = "Apache-2.0" @@ -8,7 +8,7 @@ readme = "README.md" documentation = "https://xata-py.readthedocs.io" [tool.poetry.dependencies] -python = "^3.9" +python = "^3.8" requests = "^2.28.1" python-dotenv = "^0.21.0" orjson = "^3.8.1" diff --git a/xata/client.py b/xata/client.py index cd698f3..d498d72 100644 --- a/xata/client.py +++ b/xata/client.py @@ -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.0a4" +__version__ = "1.0.0a5" PERSONAL_API_KEY_LOCATION = "~/.config/xata/key" DEFAULT_DATA_PLANE_DOMAIN = "xata.sh"